Move (void) parameter detection into a separate function, simplify daisy chaining...
[cparser] / parser.c
2009-01-01 Christoph MallonMove (void) parameter detection into a separate functio...
2009-01-01 Christoph MallonSimplify daisy chaining function call arguments.
2009-01-01 Christoph MallonSimplify daisy chaining function parameters in parse_kr...
2009-01-01 Christoph MallonFactorise code to allocate parameters.
2009-01-01 Christoph MallonMake parsing of __based() less intrusive.
2009-01-01 Christoph MallonSimplify daisy chaining of construct types in parse_inn...
2009-01-01 Christoph MallonIntroduce union construct_type_t to avoid dubious casts.
2009-01-01 Christoph MallonSlightly simplify type hashing in construct_declarator_...
2009-01-01 Christoph MallonFix linkage check for local variables in check_variable...
2009-01-01 Christoph MallonRemove the write-only attribute bool has_flexible_membe...
2009-01-01 Christoph MallonSimplify macro mumbo jumbo.
2008-12-29 Michael Beck- more MS intrinsics
2008-12-27 Michael Beck- more builtins
2008-12-27 Michael BeckRemoved EXPR_BUILTIN_SYMBOL: Builtins are now predefine...
2008-12-24 Michael Beck- fixed implementation of various __builtin functions
2008-12-24 Michael Beck- implemented __builtin_trap()
2008-12-23 Michael Beck- implemented __builtin_(ffs|ctz|clz|popcount|parity)
2008-12-23 Christoph MallonCorrectly handle qualified floats in get_default_promot...
2008-12-21 Christoph MallonImplement -Wshadow.
2008-12-21 Christoph MallonUnify the form of references to the standard.
2008-12-21 Michael Beck- implemented __builtin_prefetch()
2008-12-18 Christoph MallonUse revert_automatic_type_conversion() to determine...
2008-12-18 Christoph MallonImplement __builtin_types_compatible_p().
2008-12-18 Christoph MallonSkip non-parameter entities in parameter lists. This...
2008-12-18 Michael Beck- reimplemented __builtin_frame_address() and __builtin...
2008-12-18 Christoph MallonTwo places did not respect, that the true expression...
2008-12-18 Christoph MallonAdd some more bits for EXPR_BUILTIN_ADDRESS.
2008-12-17 Michael Beck- implemented __builtin_(return|frame)_address() FE...
2008-12-17 Christoph MallonDo not set a non-null last declaration for a declaratio...
2008-12-17 Christoph MallonImprove the AST a little: Overwrite the type of a funct...
2008-12-17 Christoph MallonDo not emit an error about different entity kinds for...
2008-12-17 Christoph MallonDo not change the local prev_type in record_entity...
2008-12-17 Christoph MallonPut { of function on separate line.
2008-12-17 Christoph MallonLength 1 for global int x[]; is actually required by...
2008-12-17 Christoph MallonAdd the macro lengthof().
2008-12-16 Christoph MallonSLL(3) is too much, SLL(2) is sufficient.
2008-12-16 Christoph MallonSmall cleanup.
2008-12-16 Christoph MallonFix stupid error in r24659.
2008-12-16 Christoph MallonAdd a skip_typeref(). In case of error a typedef could...
2008-12-16 Christoph MallonRestore error check lost in r23661: The type of a funct...
2008-12-15 Christoph MallonDo not create bogus wide char initializer from char...
2008-12-14 Matthias Braun- change enum to have an underlying atomic type
2008-12-14 Christoph MallonSimplify eat() macro.
2008-12-14 Christoph MallonUnify the form of references to the standard.
2008-12-14 Christoph MallonUse identify_new_type() instead of duplicating it.
2008-12-14 Matthias Braunfurther attributes+types tweaks
2008-12-13 Matthias Braunfirst implementation of aligned attribute
2008-12-13 Christoph MallonSet size and alignment for atomic/complex/imagenary...
2008-12-13 Christoph MallonCorrectly handle shadowing of enum type declarations.
2008-12-13 Christoph MallonAccept any integer constant expression as null pointer...
2008-12-13 Christoph MallonRemove the unused STATEMENT_LOCAL_LABEL/struct local_la...
2008-12-11 Christoph MallonOmit several errors, which include a name, if a declara...
2008-12-11 Christoph MallonIf a declarator has no name, record the location of...
2008-12-11 Christoph MallonIndentation.
2008-12-11 Christoph MallonDo not assert when * or [] do not have pointer type...
2008-12-11 Christoph MallonBe not too unhappy (i.e. assert) if there is a typedef...
2008-12-11 Christoph MallonCorrectly handle empty compound statements in check_rea...
2008-12-11 Christoph MallonOmit semantic tests in parse_compound_declarators(...
2008-12-11 Christoph MallonResolve warning.
2008-12-11 Christoph MallonImprove the behaviour of -Wsign-compare in presence...
2008-12-11 Christoph MallonMark variables used in the size expression of array...
2008-12-11 Christoph MallonDo not record error entities of kind ENTITY_COMPOUND_ME...
2008-12-11 Christoph MallonGet rid of repeated unused variable warnings.
2008-12-11 Christoph MallonMark variables used in sub initializers as read.
2008-12-11 Christoph MallonDo not print an error, that the operand of delete does...
2008-12-10 Christoph MallonSuppress warning about +/- in <</>>, if the +/- is...
2008-12-10 Christoph MallonImprove handling of statement expressions ({}):
2008-12-10 Michael Beck- recognize __attribute__((returns_twice)) and __declsp...
2008-12-09 Christoph MallonRemove two unnecessary return;.
2008-12-09 Christoph MallonAdd one more case to -Wparentheses: x + y << z.
2008-12-09 Christoph MallonRemove dead variable initialisation.
2008-12-09 Matthias Braunuse C linkage for implicit functions
2008-12-08 Moritz KrollResolved some uninitialized variable warnings
2008-12-08 Moritz KrollFixed name mangling of implicitly declared functions...
2008-12-08 Christoph MallonImprove error recovery, if the : of a ?: operator is...
2008-12-08 Christoph MallonAllow sizeof(void) and __alignof__(void) as GCC extension.
2008-12-07 Christoph MallonCompound literals are lvalues.
2008-12-07 Christoph MallonImplement -Wparentheses.
2008-12-06 Christoph MallonAdd partial support for C++ wchar_t.
2008-12-05 Christoph MallonOne more declaration-with-no-declarators-null-pointer...
2008-12-03 Christoph MallonRepair semantic of return-statements for C and implemen...
2008-12-03 Christoph MallonParameter identifier lists are no prototypes.
2008-12-03 Christoph MallonWhen parsing k&r parameter identifier lists, do not...
2008-12-03 Matthias Braunspecify error label for expect macro, fix wrong anchor...
2008-12-02 Christoph MallonAdhere §6.7.6:2 footnote 126: Empty parentheses in...
2008-12-02 Christoph MallonC++ operator can be at the start of a statement, too.
2008-12-02 Christoph MallonUpdate comment.
2008-12-02 Christoph MallonAdd C++ tokens to the anchors in parse_compound_stateme...
2008-12-02 Christoph MallonDo not unnecessarily throw away typedef information...
2008-12-02 Christoph MallonAdd billions and billions of anchors to parse_compound_...
2008-12-02 Christoph MallonBuild AST, even if the select expression (->) is invalid.
2008-12-01 Matthias Brauncall symbols identifiers in error messages
2008-11-30 Christoph MallonOnly warn about a superfluous "packed" attribute for...
2008-11-30 Christoph MallonDo not show typedefs, which were created for error...
2008-11-30 Christoph MallonRemove wrong symbol from warning messages.
2008-11-30 Christoph MallonUse quotes more consistently in error and warning messages.
2008-11-30 Christoph MallonImplement (and document \o/) -Werror-implicit-function...
2008-11-29 Christoph MallonResolve several null pointer accesses, when encounterin...
2008-11-28 Matthias Braunimprove token display
2008-11-28 Christoph MallonFix typo in comment, correct other comment.
next