cparser
2008-10-02 Christoph MallonFix assertion failure introduced in r22072.
2008-10-02 Christoph Mallonskip_typeref().
2008-10-02 Christoph MallonTreat expressions with error type as lvalues. There...
2008-10-02 Christoph MallonImprove error recovery for if-statements.
2008-10-02 Christoph MallonParse __builtin_inf{,f,l} and correct __builtin_nand...
2008-09-29 Michael Beck- set the new combo flag
2008-09-28 Matthias Braunuse firm array to avoid name/symbol clashes
2008-09-26 Christoph MallonProcess declaration modifiers for variables in ast2firm...
2008-09-26 Michael Beck- add -finline-max-size= and -finline-threshold= parameter
2008-09-24 Matthias Braunincrease inline limit
2008-09-23 Christoph MallonGenerate AST for some semantically invalid initializers.
2008-09-23 Michael Beck- add missing initialization of have_const_functions
2008-09-23 Matthias Braunhandle DM_CONST, lower inline limit, force optimize_fun...
2008-09-23 Christoph MallonTreat size_constant like a bool should be, i.e. do...
2008-09-23 Matthias Braundisable builtins by default
2008-09-22 Matthias Braunpossibility to disable builtin functions
2008-09-21 Matthias Braunmake -fsync default
2008-09-20 Christoph Mallonright_to_left() now returns 0 for left-to-right associa...
2008-09-19 Matthias Braunfix gcse
2008-09-19 Christoph MallonResolve off-by-one (and off-by-two) errors in the sourc...
2008-09-19 Christoph MallonSet the source position in allocate_statement_zero().
2008-09-18 Christoph MallonMake stray ; outside of functions an error in strict...
2008-09-18 Christoph MallonResolve compile error.
2008-09-18 Michael Beck- BugFix: unitializer must be created using qualifiers...
2008-09-18 Michael Beck- add get_type_qualifiers() allowing to get the type...
2008-09-18 Christoph MallonThe standard calls it "file scope", so rename global_sc...
2008-09-18 Christoph MallonResolve unreachable statement warnings.
2008-09-18 Christoph MallonPut T_EOF into the anchor set.
2008-09-18 Matthias Braundepend on libfirm (if path is specified in config.mak)
2008-09-18 Christoph MallonSlightly simplify stack_pop_to().
2008-09-18 Christoph Mallonenvironment_top() and local_label_top() return size_t...
2008-09-18 Christoph MallonSlightly simplify stack_push().
2008-09-18 Michael Beckfixed parameter redeclaration error
2008-09-18 Michael Beckenhanced
2008-09-18 Michael Beck- functions cannot be lvalues
2008-09-18 Michael Beck- add more attributes to support inner functions
2008-09-18 Michael Beck- added outer function jump to example
2008-09-17 Michael Beckshould warn about struct inside parameter scope definition
2008-09-17 Michael Beck- replaced set_scope by scope_push()/scope_pop()
2008-09-17 Christoph MallonAdd { as anchor while parsing k&r declaration list.
2008-09-17 Christoph MallonImplement -Waddress.
2008-09-17 Christoph MallonRestore value of in_gcc_extension using old_gcc_extension.
2008-09-17 Christoph MallonAdd { as anchor while parsing external declaration.
2008-09-17 Michael Beckfixed comments
2008-09-17 Michael Beck- BugFix: typeof operator must set the in_type_prop...
2008-09-17 Christoph MallonReduce anchor scope.
2008-09-17 Michael Beckadd support for gcc nested functions
2008-09-17 Michael Beckadd missing print_indent() (now correctly prints nsted...
2008-09-17 Christoph Malloneat_statement() is dead, long live eat_until_anchor()!
2008-09-17 Michael Becknested function example
2008-09-17 Christoph MallonSmall simplification.
2008-09-17 Michael Beckdo not record empty declarations by default
2008-09-17 Michael Beck- type property expressions are NOT self-initializer
2008-09-17 Christoph MallonAlways return a non-null pointer from parse_array_decla...
2008-09-17 Christoph MallonThe element type of an array shall not be an incomplete...
2008-09-17 Christoph MallonStill record the element type of arrays and the return...
2008-09-16 Christoph MallonWarn about type qualifiers in the return type of functi...
2008-09-16 Christoph MallonDo not warn about the return type of main(), if it...
2008-09-16 Christoph MallonUse the real error type instead of ATOMIC_TYPE_INVALID...
2008-09-16 Christoph MallonAvoid segfault when encountering a parse error while...
2008-09-16 Christoph MallonDo not warn about excess initialisers, when trying...
2008-09-16 Christoph MallonSlightly simplify printing binary operators.
2008-09-16 Christoph MallonUse fputc() instead of fputs() to print a single char.
2008-09-16 Christoph MallonPrint no " " between the ")" and the "{" of a compound...
2008-09-16 Christoph Mallonabort() instead of exit(1) in case of anchor token...
2008-09-16 Christoph MallonWhen printing AST for asm statements first print output...
2008-09-16 Christoph MallonImprove parse_va_start():
2008-09-16 Christoph MallonMake parsing of statements more robust in case of parse...
2008-09-16 Christoph MallonPlug anchor token leak in parse_statement_expression().
2008-09-16 Christoph MallonPlug two more anchor token underflows.
2008-09-16 Christoph MallonFix the first anchor token leak (actually an underflow).
2008-09-16 Christoph MallonAdd code to detect anchor token leaks.
2008-09-16 Christoph MallonCreate a few less invalid expressions on parse errors.
2008-09-16 Christoph MallonIndentation.
2008-09-16 Christoph MallonPrint \n after $invalid statement$.
2008-09-16 Michael Beckreverted 21986-21986, spec failed
2008-09-16 Michael Beck- more simplification and unification of compound/enum...
2008-09-16 Michael Beck- when parsing compound types, do NOT destroy old decla...
2008-09-16 Michael Beck- do not print {} for incomplete types
2008-09-16 Michael Beck- renamed is_empty to is_empty_range
2008-09-15 Christoph MallonFunction types only are compatible if their calling...
2008-09-15 Christoph MallonRemove redundant test from is_type_real() (is_type_floa...
2008-09-15 Michael Becksome wrong bitfields
2008-09-15 Michael Beck- implemented semantic checks for bitfield
2008-09-15 Michael Beckmore work on type size
2008-09-15 Christoph MallonDo not initialise the variables declared in a for state...
2008-09-15 Christoph MallonIn strict mode do not generate an implicit function...
2008-09-15 Christoph MallonAssert that no typerefs are passed to get_unqualified_t...
2008-09-15 Christoph MallonGet unqualified types before doing anything in semantic...
2008-09-15 Christoph MallonBuild AST for [] even if none of the operands has point...
2008-09-15 Christoph MallonParse the unlikely case, that someone writes "variable...
2008-09-15 Christoph MallonSpell the option -Wpointer-arith, not -Wpointer_arith.
2008-09-15 Christoph MallonFix warn_div_by_zero(): The result of the division...
2008-09-15 Christoph MallonSpell the option -Wdiv-by-zero, not -Wdiv_by_zero.
2008-09-15 Christoph MallonFor an array access being an object with constant addre...
2008-09-15 Christoph MallonDeMorganise.
2008-09-14 Christoph MallonHandle the case when array access results in an address...
2008-09-14 Christoph MallonCorrect and simplify the logic for -Wconversion.
2008-09-14 Christoph MallonFix warning message.
2008-09-14 Christoph MallonPrevent errors about non-constant case labels in some...
next