type: Add missing space for printing complex types.
[cparser] / ast.h
2012-11-08 Christoph MallonParse (and reject) asm goto.
2012-10-30 Christoph MallonRemove typedefs of non-existent structs.
2012-09-03 Christoph MallonRemove the AST node for while, use the one for for...
2012-06-14 Christoph MallonUse initializer_value_t for INITIALIZER_STRING, too.
2012-06-14 Christoph MallonMerge INITIALIZER_WIDE_STRING into INITIALIZER_STRING.
2012-05-08 Christoph MallonRemove the typedef for the non-existent type_argument_t.
2012-05-03 Christoph MallonRemove the typedef for the non-existent bitfield_extrac...
2012-03-29 Christoph MallonSplit computed gotos (STATEMENT_COMPUTED_GOTO) from...
2011-11-24 Matthias Brauncompound literals are linker_constants
2011-08-11 Andreas ZwinkauFix C/folderror
2011-06-24 Andreas ZwinkauMerge branch 'makefilefix'
2011-06-21 Matthias Braunrename is_address_constant to is_linker_constant, docum...
2011-06-09 Matthias Braunmove docu comments to header
2011-02-06 Christoph MallonLet is_constant_expression() and friends return an...
2010-02-24 Matthias Braun- Rework the way literals are handled, these are now...
2010-01-04 Matthias Braunadd a printing abstraction layer so we can print type...
2009-04-07 Michael Beck- 2009 patch
2009-03-08 Matthias Brauncreate fold_constant_to_bool function to avoid some...
2009-01-30 Matthias Braunalthough the literals, label addresses are not constant...
2009-01-29 Matthias Brauncosmetics
2009-01-03 Michael Beck- implemented va_copy(), needed for C99
2008-12-27 Michael BeckRemoved EXPR_BUILTIN_SYMBOL: Builtins are now predefine...
2008-12-21 Michael Beck- implemented __builtin_prefetch()
2008-12-18 Christoph MallonImplement __builtin_types_compatible_p().
2008-12-18 Michael Beck- reimplemented __builtin_frame_address() and __builtin...
2008-12-17 Michael Beck- implemented __builtin_(return|frame)_address() FE...
2008-12-13 Christoph MallonRemove the unused STATEMENT_LOCAL_LABEL/struct local_la...
2008-11-01 Matthias Braundeclaration_t -> entity_t
2008-09-14 Michael Beck- implemented computed goto
2008-07-29 Matthias Braunimplement asm nodes
2008-03-20 Michael Beck__leave implemented
2008-03-20 Michael Beck- fixed parse_error_expected()
2008-03-18 Michael Beckremoved all EXPR_FUNCTION-alikes and replaced by EXPR_F...
2008-03-14 Michael Beck- add empty and invalid statements
2008-02-18 Matthias Braunadd license comments
2008-02-15 Matthias Braun- implemented non-constant initializers
2008-02-13 Matthias Braun- first iteration of new initializer code
2007-12-15 Michael Beck- fixed gcc compilation
2007-12-15 Michael Beck- fixed _-alignof__ expression: it has the same syntax...
2007-12-14 Michael Beck- renamed context_t to the more logical scope_t
2007-12-11 Matthias Braunsupport for bitfields completed
2007-12-07 Michael Beck__builtin_prefetch implemented
2007-12-07 Michael Beck__builtin_constant_p() implemented
2007-12-07 Michael Beck- implement __alignof__
2007-12-05 Matthias Braunadd an is_constant_expression, only try to fold express...
2007-11-30 Christoph MallonAdd support for variadic arguments.
2007-11-30 Christoph MallonNext wchar_t step: Initialization with wide string...
2007-11-29 Christoph MallonFirst iteration in adding wide string literal support...
2007-11-27 Matthias Braunadd parsing of asm statements, avoid some statement...
2007-11-27 Matthias Braunconvert statements and expression to new union style...
2007-11-26 Matthias Braunchange back union stuff and expriment with new union...
2007-11-25 Michael Beckreplaced the different statement types by one union...
2007-11-25 Michael Beckreplaced the different initializer types by one union...
2007-11-23 Matthias Braunstring literals as array intiailizers are supported now
2007-11-19 Matthias Braunstarted working on correct initializer support (still...
2007-11-18 Christoph MallonImplement the GCC insani^Wextension __builtin_classify_...
2007-11-12 Matthias Braunstricter warnings
2007-11-12 Matthias Braunrename method to function
2007-09-30 Matthias Braun- reworked handling environments and struct, union...
2007-09-28 Matthias Braunimprove initializer handling
2007-09-28 Matthias Braunbugfixes, parse initializers
2007-09-17 Matthias Braunsupport for more builtins, additional bugfixes
2007-09-16 Matthias Braun- countless bugfixes
2007-09-14 Matthias Braunimproved union/struct parsing
2007-09-10 Matthias Braunimproved support for enums
2007-09-08 Matthias Braunimprove ast printing
2007-09-06 Matthias Braunmore bugfixes, started working on a fluffy declaration...
2007-07-21 Matthias Braunbugfixes for context/symbol-declaration mapping
2007-06-18 Matthias Braunmore work on parser
2007-06-16 Matthias Braunmore work on parser
2007-06-16 Matthias Braunno enviornment passing around anymore in lexer, more...
2007-06-09 Matthias BraunInitial import of c parser