cparser
2012-05-03 Christoph MallonRemove unnecessary gotos.
2012-05-03 Christoph MallonRemove the parameter is_union from create_compound_type().
2012-05-03 Matthias Braunparse gnu __leaf__ attribute
2012-05-03 Matthias Braunsort attribute enum alphabetically
2012-04-27 Matthias Braunremove obsolete file
2012-04-27 Christoph MallonRewrite expect(): Do not jump on error anymore, but...
2012-04-27 Christoph MallonImprove error recovery in parse_attribute_gnu().
2012-04-27 Christoph MallonImprove error recovery when a T_IDENTIFIER is expected.
2012-04-27 Christoph MallonPass the source position to allocate_entity_zero()...
2012-04-26 Christoph MallonRemove redundant memset().
2012-04-26 Christoph MallonRemove unnecessary local variable, which is only used...
2012-04-26 Christoph MallonRemove anchors, when they are not expected anymore.
2012-04-26 Christoph MallonDo not truncate the existing attribute list if a __decl...
2012-04-26 Christoph MallonCorrect anchor underflow in case of error in parse_micr...
2012-04-26 Christoph MallonImprove error recovery in parse_compound_statement().
2012-04-26 Christoph MallonRemove pointless skip loop: intern_parse_statement...
2012-04-26 Christoph MallonRemove pointless test: If intern_parse_statement()...
2012-04-26 Christoph MallonRemove stale TODO.
2012-04-26 Christoph MallonImprove error recovery in parse_asm_statement() and...
2012-04-26 Christoph MallonImprove error recovery in parse_do() and do not return...
2012-04-26 Christoph MallonImprove error recovery in parse_for() and do not return...
2012-04-26 Christoph MallonPlug an extension leak on parse error in parse_for().
2012-04-26 Christoph MallonDo not return an error statement, if a goto misses...
2012-04-26 Christoph MallonDo not return an error statement from parse_ms_try_stat...
2012-04-26 Christoph MallonDo not refetch a value, which we already have.
2012-04-26 Christoph MallonDo not refetch a value, which we already have.
2012-04-26 Christoph MallonReduce variable scope.
2012-04-26 Christoph MallonDo not refetch a value, which we already have.
2012-04-26 Christoph MallonOnly use the skipped type, the unskipped type is useles...
2012-04-26 Christoph MallonMove the GNU special case for sizeof(function) from...
2012-04-26 Christoph MallonFactorise the code to parse conditions of statements...
2012-04-26 Christoph MallonRemove dead assignment and the stale assert, which...
2012-04-26 Christoph MallonMove adding/removing ';' as anchor from intern_parse_st...
2012-04-26 Christoph MallonDiscard all non-anchors from the input, not just the...
2012-04-26 Christoph MallonPush the special case for compound types into get_ir_mo...
2012-04-25 Matthias Braunadjust to latest libfirm debugoutput
2012-04-24 Christoph MallonAdjust cparser to extended debug information retrieval...
2012-04-24 Christoph MallonSimplify and reduce code duplication in return_statemen...
2012-04-24 Christoph MallonUse the cparser type instead of the Firm type in return...
2012-04-24 Christoph MallonReduce code duplication in layout_struct_type().
2012-04-24 Christoph MallonRemove the macro constant INVALID_TYPE, which is only...
2012-04-24 Christoph MallonAdhere an obscure C++ rule: typedef T void; void f...
2012-04-24 Christoph MallonUse is_type_void(x) instead of x == type_void where...
2012-04-24 Christoph MallonImprove the error message if a qualified void type...
2012-04-24 Christoph MallonReplace is_type_atomic(x, ATOMIC_TYPE_VOID) by the...
2012-04-24 Christoph MallonRemove the unused variables ir_type_void and ir_type_int.
2012-04-24 Christoph MallonFactorise code to conditionally print an error or a...
2012-04-24 Christoph MallonCorrect semantic check in parse_return(): A condition...
2012-04-24 Christoph MallonDo not get the break block of a switch before it is...
2012-04-24 Christoph MallonSplit jump_if_reachable() into jump_to() and jump_if_re...
2012-04-24 Christoph MallonIt is not necessary to remember the switch block to...
2012-04-24 Christoph MallonSimplify compound_statement_to_firm() by letting statem...
2012-04-24 Christoph MallonFix walk_statement(): Walk the expression(s) of case...
2012-04-24 Christoph MallonReformat _expression_to_firm() for better readability.
2012-04-24 Christoph MallonRename EXPR_REFERENCE_ENUM_VALUE to EXPR_ENUM_CONSTANT.
2012-04-24 Christoph MallonShorten the edgaresque name reference_expression_enum_v...
2012-04-24 Christoph MallonRemove special cases for EXPR_ERROR and TYPE_ERROR...
2012-04-17 Christoph MallonRemove duplicate assertion.
2012-04-17 Christoph MallonRemove unnecessary assertion.
2012-04-17 Christoph MallonUse fold_constant_to_tarval() instead of reimplementing...
2012-04-17 Christoph MallonUse create_Const_from_bool() instead of duplicating it.
2012-04-17 Christoph MallonMove a case, which unnecessarily was an explicit if...
2012-04-17 Christoph MallonReformat statement_to_firm() for better readability.
2012-04-17 Christoph MallonUse create_jump_statement() to construct IR for goto...
2012-04-17 Christoph MallonRemove anchors only when they were added before.
2012-04-12 Christoph MallonCorrect expression_to_firm() for compound literals.
2012-04-11 Christoph MallonCorrect the ir_relation used for implicit comparisons...
2012-04-10 Christoph MallonSimplify if_statement_to_firm() so it in particular...
2012-03-29 Christoph MallonSet the correct length for literal suffixes, i.e. do...
2012-03-29 Christoph MallonSplit computed gotos (STATEMENT_COMPUTED_GOTO) from...
2012-03-29 Christoph MallonFix: Walk the expression of computed goto statements...
2012-03-29 Christoph MallonReformat switches for better readability.
2012-03-28 Christoph MallonMake our multi-case macros nicer for code beautifiers.
2012-03-28 Christoph MallonAdd EXPR_ERROR to the precedence list.
2012-03-27 Christoph MallonSimplify printing the seperator (", ") between call...
2012-03-27 Christoph MallonUse for () where it is better suited than while ().
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.
2012-03-12 Matthias Braunignore config.mak
2012-03-01 Matthias Braunfix -O0 still performing local optimizations
2012-02-29 Matthias Braunupdate libfirm version
2012-02-29 Matthias Braunignore -msse2
2012-02-29 Matthias Braunrework os classification
2012-02-29 Matthias Braunignore TARGET environment variable (Makefiles tend...
2012-02-17 Matthias Braunupdate libfirm reference (so new builtins actually...
2012-02-17 Matthias Braunimplement more builtins
2012-02-14 Matthias Braundarwin name in target tripple may contain version
2012-02-10 Matthias Braunupdate libfirm reference
2011-12-23 Matthias Braunupdate for new release
2011-12-22 Matthias Braundisable download from internet in makefile for now
2011-12-22 Matthias Braunimplement -dumpversion for gcc compatibility
2011-12-22 Matthias Braunfix --help display
2011-12-21 Sebastian BuchwaldFixed wrong enum type.
2011-12-19 Matthias Braunmaturing start and end block isn't necessary anymore...
2011-12-19 Matthias Braundo not use ir_.*_ptr types
next