condeval is called jump threading now
[cparser] / parser.c
2009-06-11 Matthias Braunfix cp_error059
2009-06-11 Christoph MallonHandle ?: in is_address_constant().
2009-06-08 Matthias Braunsome more work towards (c++) namespace support
2009-06-03 Christoph MallonEmit an error, if a non-variadic function contains...
2009-06-03 Christoph MallonIf a K&R function definition has a variadic prototype...
2009-05-28 Matthias Braunfix remaining bitfield initializer problems
2009-05-27 Matthias Braunfix union init problems
2009-05-14 Matthias Braunmissing skip_typerefs
2009-05-14 Matthias Braunnext iteration of kr handling after a discussion with...
2009-05-14 Matthias Braunfix fehler127 (again)
2009-05-11 Matthias Braununspecified_parameters, are set by kr parameter parser...
2009-05-08 Michael Becknew attempt to fix the prototyped kr function problem
2009-04-07 Michael Beck- 2009 patch
2009-04-07 Michael Beck- BugFix: use CC_DEFAULT as the default calling convent...
2009-04-07 Michael Beck- BugFix: make_function_1_type_variadic() must hash...
2009-04-07 Michael Beck- do NOT warn about "unnecessary static forward declara...
2009-03-20 Matthias Braunfix
2009-03-09 Matthias Braunattempt to fix bug #40
2009-03-09 Matthias Brauncorrectly fix calling convention problems from bug #42
2009-03-08 Matthias Braunpacked struct implementation, attribute assignment...
2009-03-08 Matthias BraunRework compound type handling:
2009-03-08 Matthias Brauncreate fold_constant_to_bool function to avoid some...
2009-03-07 Matthias Braunfix
2009-03-07 Matthias Braunsupport attribute(__const) because it is used in glibc...
2009-03-07 Matthias Braunfix __extension__ in for statement
2009-03-07 Matthias Braunimprove deprecated handling, parse attributes after...
2009-03-07 Matthias Braunfix for last commit
2009-03-07 Matthias Braunrewrite of attribute handling
2009-02-27 Matthias Braunreport an error on static function declarations in...
2009-02-20 Christoph MallonMarginally simplify parse_goto().
2009-02-20 Christoph MallonSupress the error message that the array size must...
2009-02-19 Sebastian Buchwald- fixed semantic of compound assign operator
2009-02-06 Christoph Mallonskip_typeref().
2009-02-06 Christoph MallonRemove unnecessary assignment.
2009-02-06 Christoph MallonIn strict mode set the error type for a k&r parameter...
2009-02-04 Christoph MallonImprove error recovery: Gracefully handle type names...
2009-02-04 Christoph MallonBefore testing the kind of an entity, make sure we...
2009-02-04 Christoph MallonMinor correction of error message.
2009-01-30 Christoph MallonReference the standard.
2009-01-29 Matthias Braunarray size must be integer
2009-01-28 Christoph MallonC99 §6.2.3:1 24) There is only one name space for...
2009-01-03 Michael Beck- implemented va_copy(), needed for C99
2009-01-02 Michael Beck- add FE support for MS _AddressOfReturnAddress()
2009-01-02 Christoph MallonUse next_token() instead of eat() after eat_until_match...
2009-01-02 Christoph MallonWhen skipping arguments of unknown __attribute__s also...
2009-01-02 Christoph MallonComplain about arrays with length <= 0.
2009-01-01 Christoph MallonRefer to the standard.
2009-01-01 Christoph MallonAvoid printing two more possible null pointers.
2009-01-01 Christoph MallonTweak error message: Avoid printing null pointer string.
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...
next