]> git.xonotic.org Git - xonotic/gmqcc.git/shortlog
xonotic/gmqcc.git
2012-11-26 Dale WeilerRemove trailing whitespace for Blub.
2012-11-26 Dale Weileropval is asserted .. need (void) to hide warning when...
2012-11-26 Dale Weilerfast optimized murmur hash with crc seeding, literally...
2012-11-25 Wolfgang (Blub... operator &~= must not cause the generated binstore...
2012-11-25 Wolfgang (Blub... Same as earlier: remember the outgoing block of a condi...
2012-11-25 Wolfgang (Blub... ast_breakcont_codegen: error when a target is missing...
2012-11-25 Wolfgang (Blub... endlessloops don't have any other block which could...
2012-11-25 Wolfgang (Blub... ir_function_create_block now takes a lex_ctx instead...
2012-11-25 Wolfgang (Blub... don't set the request-Lvalue flag for an array index
2012-11-25 Wolfgang (Blub... Don't add redeclared globals a second time
2012-11-25 Wolfgang (Blub... more verbose errors in the ast when an ir-create fails
2012-11-25 Wolfgang (Blub... Another case for -fassign-function-types
2012-11-25 Wolfgang (Blub... introducing -fassign-function-types, previously guarded...
2012-11-25 Wolfgang (Blub... fix a lexer error which parsed !! as one operator
2012-11-25 Wolfgang (Blub... __builtin_debug_printtype directive... helped me down...
2012-11-25 Wolfgang (Blub... Only check the ast-type of a switch case, not if it...
2012-11-25 Wolfgang (Blub... actually handle unary plus...
2012-11-25 Wolfgang (Blub... Allow float constants which start with a dot
2012-11-25 Wolfgang (Blub... Ah right, 'var' is not an actual keyword, support TOKEN...
2012-11-25 Wolfgang (Blub... Use the correct default cv-qualifier on locals
2012-11-25 Wolfgang (Blub... Allow 'var' in functions... even there initialized...
2012-11-25 Dale WeilerFix the testsuite to properly error on failed loads
2012-11-25 Wolfgang (Blub... handling TOKEN_CHARCONST - -Wmultibyte-character
2012-11-25 Wolfgang (Blub... Actually use TOKEN_CHARCONST in the lexer...
2012-11-25 Wolfgang (Blub... Don't error about creating an unreachable statement...
2012-11-25 Wolfgang (Blub... Filling up remaining gotos at the end of a function...
2012-11-25 Wolfgang (Blub... making goto a keyword
2012-11-25 Wolfgang (Blub... parsing goto
2012-11-25 Wolfgang (Blub... Add the array tests, seem to have forgotten to add...
2012-11-25 Wolfgang (Blub... Support codegen of ast_label and ast_goto in any order
2012-11-25 Wolfgang (Blub... ast_label, and labels later used for goto
2012-11-25 Wolfgang (Blub... temporarily disable the 'constant' flag when parsing...
2012-11-25 Wolfgang (Blub... Allow 'const' within function bodies
2012-11-25 Wolfgang (Blub... Fix linecounting mistake in try_digraph
2012-11-25 Wolfgang (Blub... Set the output to NULL always before parsing stuff
2012-11-25 Wolfgang (Blub... fix wrong parameter order in parse_variable calls,...
2012-11-25 Wolfgang (Blub... more on CV_CONST/CV_VAR, initializers to check 'constan...
2012-11-25 Wolfgang (Blub... const/variable qualifier flag for parse_variable
2012-11-25 Wolfgang (Blub... Allow dangling semicolons for now
2012-11-25 Wolfgang (Blub... a '(void)' parameter list does not mean 1 parameter...
2012-11-25 Wolfgang (Blub... fixed: -frelaxed-switch check was in the wrong position
2012-11-25 Wolfgang (Blub... assignment to constant error
2012-11-25 Wolfgang (Blub... constant flag, -finitialized-nonconstants to turn initi...
2012-11-25 Wolfgang (Blub... ast: isconst->hasvalue, const keyword will set the...
2012-11-25 Wolfgang (Blub... Parse the 'not' keyword in if as TOKEN_IDENT
2012-11-25 Wolfgang (Blub... Some side-effect propagation for better warnings, so...
2012-11-25 Wolfgang (Blub... Allow regular AND used on non-float types
2012-11-25 Wolfgang (Blub... Allow strings to contain a backslash and a newline...
2012-11-25 Wolfgang (Blub... Guard translatable strings by -ftranslatable-strings...
2012-11-25 Wolfgang (Blub... update noops flag while parsing a translatable string
2012-11-25 Wolfgang (Blub... Translatable string constants
2012-11-25 Wolfgang (Blub... parser_const_string can now create a translatable string
2012-11-25 Wolfgang (Blub... linecounting fix for push/pop(line) pragmas
2012-11-25 Wolfgang (Blub... Let's not have + and - as sole token, always allow...
2012-11-25 Wolfgang (Blub... linecounting...
2012-11-25 Wolfgang (Blub... linecounting issue in the lexer
2012-11-25 Wolfgang (Blub... Fix a bug in the lexer causing double-dots to double...
2012-11-25 Wolfgang (Blub... Fix parsing of multi-dot field types
2012-11-25 Wolfgang (Blub... multiple dots to start a field type, ie ..float for...
2012-11-25 Wolfgang (Blub... moving cleanvar=false out of a condition
2012-11-25 Wolfgang (Blub... linecounting issues in the ftepp
2012-11-25 Wolfgang (Blub... a more verbose error
2012-11-25 Wolfgang (Blub... -Wconst-var
2012-11-25 Wolfgang (Blub... Fixing propogate->propAgate typo in test.c
2012-11-25 Wolfgang (Blub... s/succeed/succeeded/
2012-11-25 Wolfgang (Blub... Simplify some condition in the tester
2012-11-25 Wolfgang (Blub... Typedef testcases
2012-11-25 Wolfgang (Blub... free the _locals vector
2012-11-25 Wolfgang (Blub... Fix a missing uninitialized value which caused typedefs...
2012-11-25 Wolfgang (Blub... Allow typedefs to shadow defs of previous scopes
2012-11-25 Wolfgang (Blub... Implementing typedef
2012-11-25 Wolfgang (Blub... fixing a leak in the hashtables, htdel didn't delete...
2012-11-25 Wolfgang (Blub... typedef is now a keyword
2012-11-25 Wolfgang (Blub... always define GMQCC, never define FTEQCC or QCC, but...
2012-11-25 Wolfgang (Blub... Revert "Fix type punning warnings"
2012-11-25 Dale WeilerFix type punning warnings
2012-11-25 Wolfgang (Blub... Fix some uninitialized values
2012-11-25 Wolfgang (Blub... use the hashtables in the IR
2012-11-25 Wolfgang (Blub... removing ir_function_get_local - it's unused
2012-11-25 Wolfgang (Blub... Change the parser to use the hashtable functions
2012-11-24 Dale WeilerSome hashtable changes
2012-11-24 Dale WeilerYou made substantial changes to this file, you get...
2012-11-24 Dale WeilerAdd respective license headers + some cleanups
2012-11-24 Dale WeilerWhitespace
2012-11-24 Dale WeilerSet correct macro for PP based on the selected standard
2012-11-24 Dale WeilerImplemented -W? and -f? as aliases to -Whelp and -fhelp
2012-11-24 Dale WeilerImplemented -show-defaults
2012-11-23 Wolfgang (Blub... -Wdouble-declaration on by default
2012-11-23 Wolfgang (Blub... turn the message about global variable double-declarati...
2012-11-23 Wolfgang (Blub... warn about double function declarations...
2012-11-23 Wolfgang (Blub... A nice internal error
2012-11-23 Wolfgang (Blub... 'var' is now no keyword anymore, :\
2012-11-23 Wolfgang (Blub... handling 'const' - still need correct separation of...
2012-11-23 Wolfgang (Blub... preserve newlines in preprocessed multiline comments
2012-11-23 Wolfgang (Blub... Adding an unrecognized keywords error
2012-11-23 Wolfgang (Blub... Fix a very nasty bug in the lexer's handling of comments
2012-11-23 Dale WeilerMerge branch 'master' of github.com:graphitemaster...
2012-11-23 Dale WeilerAdded comment about hashtable
2012-11-23 Wolfgang (Blub... relation operation in #if just as wrong as in fteqcc
2012-11-23 Dale WeilerNo copy, just store pointer for hash table
next