]> git.xonotic.org Git - xonotic/gmqcc.git/history - parser.c
-fbail-on-werror option
[xonotic/gmqcc.git] / parser.c
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)... 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)... 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)... a more verbose error
2012-11-25 Wolfgang (Blub)... -Wconst-var
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)... Fix some uninitialized values
2012-11-25 Wolfgang (Blub)... Change the parser to use the hashtable functions
2012-11-24 Dale WeilerAdd respective license headers + some cleanups
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)... 'var' is now no keyword anymore, :\
2012-11-23 Wolfgang (Blub)... handling 'const' - still need correct separation of...
2012-11-23 Wolfgang (Blub)... Adding an unrecognized keywords error
2012-11-23 Wolfgang (Blub)... operator &~=
2012-11-23 Wolfgang (Blub)... operators &= and |=
2012-11-23 Wolfgang (Blub)... *= and /= operators
2012-11-23 Wolfgang (Blub)... correcting an error message
2012-11-23 Wolfgang (Blub)... Suffix operators, and remembering the const-float-1...
2012-11-23 Wolfgang (Blub)... Parsing of suffix operators, NOTE: applied like prefix...
2012-11-23 Wolfgang (Blub)... Prefix ++,--
2012-11-23 Wolfgang (Blub)... a type_name -> ast_type_to_string conversion
2012-11-23 Dale WeilerUse memcmp for comparing doubles
2012-11-23 Dale WeilerMake it compile with -Wall and -pedantic
2012-11-22 Wolfgang (Blub)... unused params in parser.c
2012-11-22 Wolfgang (Blub)... Remove unused macro
2012-11-22 Wolfgang (Blub)... Fixing shadows in parser.c - moving generate_checksum...
2012-11-22 Dale WeilerMerge branch 'master' of github.com:graphitemaster...
2012-11-21 Wolfgang (Blub)... -dump vs -dumpfin; to see the IR before and after final...
2012-11-21 Wolfgang (Blub)... error if the ternary operands aren't of the same type...
2012-11-21 Wolfgang (Blub)... check 'ternaries' count
2012-11-21 Wolfgang (Blub)... Utilizing vec_last more
2012-11-21 Wolfgang (Blub)... operator handling for ternary
2012-11-21 Wolfgang (Blub)... Removing some obsolete messages
2012-11-21 Wolfgang (Blub)... parsing the ternary
2012-11-19 Wolfgang (Blub)... -frelaxed-switch to enable switch on non-constant cases
2012-11-19 Wolfgang (Blub)... Parsing of switches
2012-11-19 Wolfgang (Blub)... fix a warning and remove unused variables
2012-11-19 Wolfgang (Blub)... break and continue support
2012-11-19 Wolfgang (Blub)... moving 'return' parsing into a function
2012-11-19 Dale WeilerMerge branch 'master' into test-suite
2012-11-18 Wolfgang (Blub)... Make functions copy their extparams
2012-11-18 Wolfgang (Blub)... Make the >8 parameter message a warning
2012-11-18 Wolfgang (Blub)... The ftepp now always outputs into a string buffer,...
2012-11-18 Wolfgang (Blub)... Merge branch 'master' into ftepp
2012-11-18 Wolfgang (Blub)... Collect accessor functions in the parser so they can...
2012-11-18 Wolfgang (Blub)... Removing some code duplication
2012-11-18 Wolfgang (Blub)... Some printf/con_out/con_err conversions, guarded some...
2012-11-15 Wolfgang (Blub)... Replaced it all...
2012-11-15 Dale WeilerUse new console system everywhere.
2012-11-14 Wolfgang (Blub)... Merging in new-syntax
2012-11-14 Dale Weilerpreliminary segregated console subsystem
2012-11-13 Wolfgang (Blub)... if not() support
2012-11-13 Wolfgang (Blub)... if not() support
2012-11-13 Wolfgang (Blub)... improve the warning
2012-11-13 Wolfgang (Blub)... Warn (via -Wextensions) when accessing a field-of-array...
2012-11-12 Wolfgang (Blub)... when finishing an array-indexing operation the parser...
2012-11-12 Wolfgang (Blub)... allowing inexing of array-fields
2012-11-12 Wolfgang (Blub)... array-field setter needs to use STOREP*
2012-11-12 Wolfgang (Blub)... support for ast_entfield nodes with specific output...
2012-11-12 Wolfgang (Blub)... entity-array-field-setter generation
2012-11-12 Wolfgang (Blub)... code to instantiate field-array accessors
2012-11-12 Wolfgang (Blub)... Preparing to generate accessors for field arrays
2012-11-12 Wolfgang (Blub)... more factorizing and shortening of code
2012-11-12 Wolfgang (Blub)... shorten some code
2012-11-11 Wolfgang (Blub)... call ir_function_finalize on array accessors otherwise...
2012-11-11 Wolfgang (Blub)... handling of op-[
2012-11-11 Wolfgang (Blub)... Handling [ in the SYA
2012-11-11 Wolfgang (Blub)... array index opening-paren can now return TOKEN_OPERATOR...
2012-11-11 Wolfgang (Blub)... SY_PAREN_ constants to replace magic numbers
2012-11-11 Wolfgang (Blub)... Store accessors in the ast_value for access from within...
2012-11-11 Wolfgang (Blub)... array accessor function genaration
2012-11-11 Wolfgang (Blub)... properly in all situations where an array is part of...
2012-11-11 Wolfgang (Blub)... Don't allow arrays and other unsupported parameter...
2012-11-11 Wolfgang (Blub)... Starting to add error messages for when using array...
2012-11-11 Wolfgang (Blub)... need to use ast_unref rather than ast_delete on the...
2012-11-11 Wolfgang (Blub)... parser_compile_file vs parser_compile_string
2012-11-11 Wolfgang (Blub)... parse arrays
2012-11-11 Wolfgang (Blub)... first parsing of [ - pushing temp changes
2012-11-11 Wolfgang (Blub)... Preparing to parse arrays: adding TYPE_ARRAY and union...
2012-11-11 Wolfgang (Blub)... Support non-const initialized locals
2012-11-11 Wolfgang (Blub)... Shouldn't require a 'local' keyword for local fieldpointers
2012-11-11 Wolfgang (Blub)... globals of type .vector will now properly generate...
2012-11-11 Wolfgang (Blub)... Support in the AST for TYPE_FIELD globals which are...
2012-11-11 Wolfgang (Blub)... added 'var' to the keywords when not in -std=qcc, suppo...
2012-11-11 Wolfgang (Blub)... -std=qcc now errors on C-style function syntax
2012-11-11 Wolfgang (Blub)... -std=qcc should error when the '=' is missing in a...
2012-11-11 Wolfgang (Blub)... Removing old commented-out parsing code
2012-11-11 Wolfgang (Blub)... Making the = in front of function bodies optional
2012-11-11 Wolfgang (Blub)... new-style syntax
2012-11-11 Wolfgang (Blub)... Enable 'local-already-declared' check for locals even...
next