Use print_char('x') instead of print_string("x").
[cparser] / ast.c
2012-03-27 Christoph MallonUse print_char('x') instead of print_string("x").
2012-03-27 Christoph MallonImprove printing after an inner statement.
2012-03-27 Christoph MallonEnsure that case labels are always printed with the...
2012-03-27 Christoph MallonHandle printing of inner statements systematically...
2012-03-27 Christoph MallonHandle printing of indentation before statements more...
2012-03-27 Christoph MallonLet the callers of print_statement() handle printing...
2012-03-27 Christoph MallonRemove pointless null pointer check.
2011-11-24 Matthias Brauncompound literals are linker_constants
2011-08-17 Matthias Braunsimplify builtin infrastructure
2011-08-13 Matthias Braunremove ENTITY_INVALID
2011-08-13 Matthias Braunrename STATEMENT_INVALID to STATEMENT_ERROR
2011-08-13 Matthias Braunremove EXPR_INVALID, EXPR_ERROR is enough
2011-08-12 Matthias Braundo not crash when printing implicit union/struct selects
2011-08-12 Matthias Braundifferentiate between EXPR_INVALID and EXPR_ERROR
2011-08-11 Matthias Braunremove old EXPR_UNKNOWN artifact
2011-08-10 Matthias Braunrework architecture specific type handling
2011-08-09 Matthias Braunbitfields are an entity attribute now, not a type
2011-08-09 Matthias Brauntransform token_t into a union (similar to ast-nodes)
2011-07-28 Matthias Braunuse bool flag instead of UNARY_CAST_IMPLICIT
2011-06-24 Andreas ZwinkauMerge branch 'makefilefix'
2011-06-21 Matthias Braunrename is_address_constant to is_linker_constant, docum...
2011-06-21 Matthias Braunfix is_address_constant EXPR_SELECT case
2011-06-20 Matthias Braunadd missing EXPR_SELECT case in is_address_constant
2011-06-17 Matthias Braunfix a bunch of warnings (reported by cparser)
2011-06-09 Matthias Braunmove docu comments to header
2011-05-19 Christoph MallonRemove the unnecessary distinction between compound_t...
2011-05-05 Christoph MallonDo not compare boolean values with false/true, just...
2011-02-17 Christoph MallonRate EXPR_REFERENCE (variable uses) with error type...
2011-02-06 Christoph MallonLet is_constant_expression() and friends return an...
2011-02-04 Christoph MallonWhitespace fixes.
2010-05-05 Matthias Braunfix for cp_error062
2010-02-24 Matthias Braun- Rework the way literals are handled, these are now...
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...
2009-06-11 Christoph MallonHandle ?: in is_address_constant().
2009-06-08 Matthias Braunsome more work towards (c++) namespace support
2009-05-02 Christoph MallonRemove unnecessary special case: sizeof expressions...
2009-04-07 Michael Beck- 2009 patch
2009-03-10 Matthias Braunfix packed bitfield handling, long double is 16bytes...
2009-03-08 Matthias Brauncreate fold_constant_to_bool function to avoid some...
2009-03-07 Matthias Braunrewrite of attribute handling
2009-01-30 Matthias Braunalthough the literals, label addresses are not constant...
2009-01-29 Matthias Braunsome things aren't constant
2009-01-27 Christoph Mallonfputs() + fputc() -> fputs().
2009-01-03 Michael Beck- implemented va_copy(), needed for C99
2008-12-30 Christoph MallonDo not query the precedence in the AST printer, if...
2008-12-27 Michael Beck- fixed warnings
2008-12-27 Michael BeckRemoved EXPR_BUILTIN_SYMBOL: Builtins are now predefine...
2008-12-21 Christoph Mallon?: with omitted true-expression needs special handling...
2008-12-21 Christoph MallonBetter show something (syntactically invalid) when...
2008-12-21 Michael Beck- implemented __builtin_prefetch()
2008-12-21 Christoph MallonAvoid double parentheses when AST printing sizeof expre...
2008-12-18 Christoph MallonImplement __builtin_types_compatible_p().
2008-12-18 Michael Beck- reimplemented __builtin_frame_address() and __builtin...
2008-12-18 Christoph MallonMerge common cases in print_entity().
2008-12-18 Christoph MallonTwo places did not respect, that the true expression...
2008-12-17 Michael Beck- implemented __builtin_(return|frame)_address() FE...
2008-12-17 Christoph MallonAdd the macro lengthof().
2008-12-15 Christoph MallonMake the input encoding selectable via −finput‐charset...
2008-12-13 Christoph MallonConsider lazy evaluation for && and || in is_constant_e...
2008-12-13 Christoph MallonPrint type definitions and local label declarations...
2008-12-13 Christoph MallonRemove the unused STATEMENT_LOCAL_LABEL/struct local_la...
2008-12-11 Christoph MallonGet rid of unnecessary negation.
2008-12-11 Christoph MallonResolve warning.
2008-12-11 Christoph MallonWhitespace.
2008-12-10 Christoph MallonImprove handling of statement expressions ({}):
2008-12-09 Matthias Braunfix warning
2008-12-09 Matthias Braundo NOT add default: cases to enum switches
2008-12-08 Moritz KrollResolved some uninitialized variable warnings
2008-12-08 Moritz KrollCompiles now with Cygwin, if -Werror is disabled in...
2008-12-08 Christoph MallonCorrectly print octal escape sequences, when the char...
2008-12-07 Christoph MallonSlightly change whitespace when printing for-statements.
2008-12-07 Christoph MallonImplement -Wparentheses.
2008-12-05 Christoph MallonPrint scalar initialisers as assignment expressions...
2008-12-05 Christoph MallonAdd print_assignment_expression() as shortcut for print...
2008-12-02 Christoph MallonDo not print a space in a return statement, which has...
2008-11-29 Christoph MallonResolve another null pointer access.
2008-11-28 Christoph MallonUse fputs/fputc where appropriate.
2008-11-27 Matthias Braunfix builting expect handling and implement taking addre...
2008-11-25 Matthias Braun- Introduce ENTITY_PARAMETER
2008-11-20 Christoph MallonDo not print quotes around __func__ etc., because it...
2008-11-20 Christoph MallonWhitespace and stuff.
2008-11-20 Christoph MallonCorrect precedence for printing ?: in C++ mode.
2008-11-19 Christoph MallonCorrect precedence of postfix ++ and -- in the AST...
2008-11-19 Christoph MallonSimplify printing suffix of constants.
2008-11-19 Christoph MallonFix printing of necessary () in the AST-printer.
2008-11-19 Christoph MallonImprove storage class handling:
2008-11-14 Matthias BraunMore work for C++ mode:
2008-11-10 Christoph MallonParse C++ bool, false and true.
2008-11-04 Christoph MallonTell the ast printer a thing ot two about EXPR_REFERENC...
2008-11-01 Matthias Braundeclaration_t -> entity_t
2008-10-27 Michael Beck- further fixed r23189
2008-10-27 Christoph MallonParse and check semantic of delete expressions.
2008-10-27 Christoph MallonParse and check semantic of throw expressions.
2008-10-25 Michael Beck- fixed r23189: the AST-printer doubles the precesion...
2008-10-25 Christoph MallonUnify the precedence lists of the parser and the AST...
2008-10-19 Christoph MallonResolve some warnings.
2008-10-02 Christoph MallonParse __builtin_inf{,f,l} and correct __builtin_nand...
2008-09-20 Christoph Mallonright_to_left() now returns 0 for left-to-right associa...
2008-09-17 Michael Beckadd missing print_indent() (now correctly prints nsted...
next