cparser
2008-11-18 Christoph MallonParse C++ references.
2008-11-18 Christoph MallonPut error for goto over VLA onto the TODO list.
2008-11-17 Christoph MallonReject variable declarations of incomplete type.
2008-11-17 Christoph MallonDo not mangle restrict qualifiers.
2008-11-17 Christoph MallonHandle mangling of anonymous types, which only have...
2008-11-17 Christoph MallonFix off-by-one error in error message.
2008-11-17 Christoph MallonRemove pointless assert().
2008-11-17 Christoph MallonIndentation and stuff.
2008-11-17 Christoph MallonMerge semantic_compound() into parse_compound_declarato...
2008-11-17 Christoph MallonCompound types are incomplete until the }.
2008-11-17 Christoph Mallons/puts("")/putchar(n)/.
2008-11-17 Christoph MallonImprove r23717, because it broke non-WIN32 (cpp is...
2008-11-17 Michael Beck- parsing of __based implemented (more semantic in...
2008-11-17 Michael Beck- windows does not handle \_, use quotes
2008-11-16 Matthias Braunkeep it simple and stupid: cast to unsigned instead...
2008-11-16 Michael Beck- %zu is not supported on windows
2008-11-16 Christoph MallonImplement mangling of complex and imaginary types.
2008-11-16 Christoph MallonPartially implement mangling of array types.
2008-11-16 Christoph MallonPartially implement mangling of enum types.
2008-11-16 Christoph MallonPartially implement mangling of compound types.
2008-11-16 Christoph MallonProcess calling convention attributes again.
2008-11-16 Christoph MallonRemove wrong \n.
2008-11-16 Christoph MallonMove local variable declaration closer to its use.
2008-11-16 Christoph MallonFix condition of multi-char constant warning.
2008-11-16 Christoph MallonFix r23702 and r23704.
2008-11-16 Christoph MallonSlightly simplify daisy chaining gotos.
2008-11-16 Christoph MallonFix comment.
2008-11-16 Christoph MallonSlightly simplify daisy chaining labels.
2008-11-16 Christoph MallonSlightly simplify daisy chaining in parse_asm_arguments().
2008-11-16 Christoph MallonRemove redundant conditions.
2008-11-16 Christoph MallonWarn about reference address as bool in for, while...
2008-11-16 Christoph MallonDo not panic, when the expression walker of the stateme...
2008-11-16 Christoph MallonWarn about reference address as bool in condition of...
2008-11-16 Christoph MallonRename warn_function_address_as_bool() to warn_referenc...
2008-11-16 Christoph MallonFix get_reference_address(), which was broken in r23351.
2008-11-15 Christoph MallonFix off-by-one error in error message.
2008-11-15 Christoph MallonFix off-by-one error in error message.
2008-11-15 Christoph MallonUse the correct format specifier for the return value...
2008-11-15 Christoph MallonThe outer function entity does not use the F...E delimi...
2008-11-15 Christoph MallonEmpty parameter lists are mangled as "v".
2008-11-15 Christoph MallonThe order for type qualifiers in mangled names is r...
2008-11-15 Christoph MallonSimplify further.
2008-11-15 Christoph MallonSlightly simplify creating an ident from a string on...
2008-11-15 Christoph MallonImprove linkage specification
2008-11-15 Christoph MallonImprove win32 name mangling:
2008-11-15 Christoph MallonThe calling convention is orthogonal to the linkage...
2008-11-15 Christoph Mallonstatic.
2008-11-15 Christoph MallonFix argument for error message: It must be a string...
2008-11-14 Michael Beck- don't use obstack_printf() when not necessary
2008-11-14 Michael Beck- fixed a lot of 'enum type mixed with ...' warnings
2008-11-14 Michael Beck- fixed warning
2008-11-14 Michael Beck- use _Bool for C99 or intel compiler issue a lot of...
2008-11-14 Matthias Braunfix string initializer when implicitely going down...
2008-11-14 Matthias BraunMore work for C++ mode:
2008-11-14 Christoph MallonTeach cparser how to parse (f)(void);, i.e. global...
2008-11-14 Matthias Braundelete temp files
2008-11-14 Matthias Braunmore cleanup
2008-11-14 Matthias Braunuse ushort wchar_t on mingw
2008-11-14 Matthias Braunmissing break
2008-11-14 Matthias Braunmost of the options are handled in main.c now
2008-11-14 Matthias Braun- Try to move OS/target specific stuff to lang_features...
2008-11-13 Matthias Braunfix local labels
2008-11-13 Matthias Braunpass correct modes to 64bit lowerer
2008-11-13 Matthias Braunno need for a separate local_label stack, the scoping...
2008-11-13 Matthias Braunavoid warnings and fix potential bugs (if someone manag...
2008-11-13 Matthias Braunfix assert
2008-11-11 Matthias Braunc frontend doesn't case about modulo_shift, rename...
2008-11-10 Christoph MallonIn C++ the result type of !, <, <=, >=, >, == and ...
2008-11-10 Christoph MallonParse C++ bool, false and true.
2008-11-07 Matthias Braunmore work towards expansion of macros with arguments
2008-11-06 Michael Beck- renamed option end-melt to shape-blocks
2008-11-04 Christoph MallonWhen creating an error typedef, set its type to the...
2008-11-04 Christoph MallonDo not panic, when finding a typedef name, when an...
2008-11-04 Christoph Mallonuse expect() to find the ] of an array access expression.
2008-11-04 Christoph MallonSet the source position in allocate_expression_zero().
2008-11-04 Christoph MallonTell the ast printer a thing ot two about EXPR_REFERENC...
2008-11-04 Matthias Braunfix parsing of define argument lists, fix subtle proble...
2008-11-04 Matthias Braunmodifier to print preprocessing token
2008-11-04 Matthias Braunprint tokens without surrounding ''
2008-11-04 Matthias Braunmore tricky preprocessor problems
2008-11-03 Matthias Braunif(n)def implementation
2008-11-03 Matthias Braunimplemented #include
2008-11-02 Matthias Braunadd beginnings of preprocessor code (and ugly hack...
2008-11-02 Matthias BraunEXPR_INVALID gets constructed in case of errors
2008-11-02 Matthias Braunimprove flexible array member handling, assign error_ty...
2008-11-02 Matthias Braunset has_implicit_size flag
2008-11-02 Matthias BraunTODO update
2008-11-01 Matthias BraunMove more C tests
2008-11-01 Matthias Braunmove C frontend tests
2008-11-01 Matthias Braunadd main, fix warnings not intended
2008-11-01 Matthias Braunthis should not be here
2008-11-01 Matthias Braunwrite a testapp that really test functionality (so...
2008-11-01 Matthias Braunlocal labels should be fixed
2008-11-01 Matthias Braunpartly fix local labels, %P already prints %P an at...
2008-11-01 Matthias Braunconditional expressions true case may be NULL as a...
2008-11-01 Matthias Braundeclaration_t -> entity_t
2008-11-01 Matthias Braunfix warning
2008-11-01 Matthias Braunthis is a gnu extension I guess
2008-11-01 Matthias Brauntest implicit type for k&r functions
2008-10-28 Michael Beck- add option -end-melt
next