Report an error on empty character constants, i.e. ''.
[cparser] / parser.c
2011-05-31 Christoph MallonReport an error on empty character constants, i.e. ''.
2011-05-30 Christoph MallonCorrect parsing of abstract function declarators.
2011-05-29 Christoph MallonPrevent dereferencing a null pointer, when parse_attrib...
2011-05-24 Matthias Braunignore type qualifiers when checking arguments of main
2011-05-24 Matthias Braunremove pointless concept of a builtin-type
2011-05-19 Christoph MallonAvoid unnecessary casts.
2011-05-05 Christoph MallonCorrect off-by-something errors in error messages about...
2011-03-15 Matthias Braunfix whitespace errors
2011-03-11 Christoph MallonFix type semantics: &, ^ and | require integer operands.
2011-02-24 Christoph MallonRemove duplicate assert.
2011-02-24 Christoph MallonAllow declarations after labels in C++ mode.
2011-02-24 Christoph MallonImprove error message: Show the position of the label...
2011-02-20 Michael BeckAttemp to fix typedef_init.c testcase.
2011-02-20 Michael Beckadd some comments, made for loop look "more usual"...
2011-02-18 Christoph MallonChange is_error_entity() to !is_entity_valid(), which...
2011-02-18 Christoph MallonCorrect logic in is_error_entity().
2011-02-18 Matthias Braunimplement sizeof(func) and alignof(func) in gnu99 mode
2011-02-18 Christoph MallonCorrect off-by-whatever errors of the source position...
2011-02-18 Christoph MallonAssign the proper namespace to all new entities and...
2011-02-06 Christoph MallonLet is_constant_expression() and friends return an...
2011-02-06 Christoph MallonImprove error recovery: eat_until_anchor() when parse_p...
2011-02-06 Christoph MallonFix C/should_fail/decl_without_name.c.
2011-02-05 Christoph MallonSimplify daisy chaining local labels.
2011-02-05 Christoph MallonDo not eat() the semicolon at the end of a local label...
2011-02-05 Christoph MallonImprove error recovery: Do not create an invalid statem...
2011-02-05 Christoph MallonCorrect typo in label name.
2011-02-05 Christoph MallonRemove unnecessary gotos.
2011-02-05 Christoph MallonProvide the specific error message about a label at...
2011-02-04 Christoph MallonImprove error recovery: Produce a valid statement and...
2011-02-04 Christoph MallonWhitespace fixes.
2011-01-31 Christoph MallonRemove unnecessary/wrong cast. ARR_SHRINKLEN() uses...
2011-01-31 Christoph MallonUse correct parameter name in comment.
2011-01-28 Michael BeckRemoved superflous computations, these are done later...
2010-10-12 Matthias Brauninitial implementation of builtin_object_size
2010-09-10 Matthias Braunadd missing semantic check: varargs arguments must...
2010-04-27 Matthias Brauncall it subexpression instead of sub_expression; attemp...
2010-04-23 Christoph MallonAdd allocate_declarator_zero().
2010-04-22 Christoph MallonFix C/should_fail/array[13].c: static array parameters...
2010-04-22 Christoph MallonFix C/should_fail/array0.c: static is allowed only...
2010-04-22 Christoph MallonMove error message to a better place.
2010-04-22 Christoph MallonAdd references to the standards.
2010-04-22 Christoph MallonReduce code duplication.
2010-04-22 Christoph MallonFix C/gnu99/typeof.c: revert_automatic_type_conversion...
2010-04-22 Christoph Mallon%s/may not/must not/.
2010-04-18 Michael Beckfixed uninitialized variable
2010-03-12 Matthias Braunfix warnings and remove unnecessary current_ir_graph...
2010-03-11 Christoph MallonCorrect false positives about variables used in out...
2010-02-25 Christoph MallonSort.
2010-02-24 Matthias Braunfix a few memory errors introduced with the last commit
2010-02-24 Matthias Braunfix cp_errro060
2010-02-24 Matthias Braun- Rework the way literals are handled, these are now...
2010-02-15 Matthias Brauncleanup builtin handling and put it into an own file...
2010-02-05 Christoph MallonImplement __builtin_huge_valf and __builtin_huge_vall.
2010-01-04 Matthias Braunadd a printing abstraction layer so we can print type...
2010-01-02 Matthias Braunpreliminary support for namespace mangling (I had this...
2009-11-20 Christoph MallonSlightly simplify daisy chaining several lists.
2009-11-20 Christoph MallonReplace if-cascade by switch.
2009-11-20 Christoph MallonAdd next_if(), which consumes the next token, if it...
2009-11-20 Christoph MallonReduce variable scope.
2009-11-20 Christoph MallonCorrect indentation.
2009-09-15 Christoph MallonCorrect off-by-one error of source position in parse_qu...
2009-09-11 Christoph MallonFix C/should_fail/init2.c: if there is no outer_type...
2009-09-11 Christoph MallonRemove return at end of function.
2009-09-02 Christoph MallonMinor simplification.
2009-08-17 Matthias Braunwhen redeclaring stuff with different attributes merge...
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...
next