cparser
2007-11-21 Matthias Braunsupport address taken from function parameters
2007-11-21 Matthias Braunfix case/default labels with statement, add a dump...
2007-11-21 Matthias Braunimplement 5[a] type array references
2007-11-21 Matthias Braunadd -lz to libs...
2007-11-21 Christoph MallonDivide by the element size in pointer - pointer express...
2007-11-21 Christoph MallonTest for U and u instead of two times U in parse_intege...
2007-11-21 Christoph MallonParse an integer suffix after a hex number.
2007-11-21 Christoph MallonHexadecimal is base 16, not 36. (;
2007-11-21 Christoph MallonUse new_tarval_from_double() to create floating point...
2007-11-21 Matthias Braunimprove number lexing even more
2007-11-21 Matthias Braunimprovements to number lexing
2007-11-21 Matthias Braunuse strtol/strtod for lexing numbers
2007-11-20 Matthias Braunimplement array intiailizers
2007-11-20 Christoph MallonDo the "usual arithmetic conversions" for the second...
2007-11-20 Christoph MallonHandle void expressions in conditional expressions.
2007-11-20 Christoph MallonImplement __func__, __FUNCTION__ and __PRETTY_FUNCTION__.
2007-11-20 Matthias Braunstarted implementing struct initializers in ast2firm
2007-11-20 Christoph MallonSimplify.
2007-11-20 Christoph MallonFix warning.
2007-11-19 Matthias Braunstrange structs
2007-11-19 Matthias Braunstarted working on correct initializer support (still...
2007-11-19 Matthias BraunC99 has stupid rules sometimes...
2007-11-19 Matthias Braunstarted collecting some parser tests
2007-11-19 Christoph MallonThere is no need to pass -o - to the preprocessor.
2007-11-19 Christoph MallonInitialise the backend only once.
2007-11-19 Christoph Mallons/be_set_debug_retrieve/ir_set_debug_retrieve/.
2007-11-19 Christoph MallonHandle Bad nodes in create_conv().
2007-11-18 Christoph MallonImplement the GCC insani^Wextension __builtin_classify_...
2007-11-18 Christoph Malloncompound type specifiers can have __attribute__, too...
2007-11-18 Christoph MallonArray as last part of a paramter type is just syntactic...
2007-11-18 Christoph MallonAdd missing skip_typeref() in array_access_to_firm().
2007-11-18 Christoph MallonReplace confusing if (c) return false; else return...
2007-11-18 Christoph MallonTypo in comment.
2007-11-18 Christoph MallonAlso count arrays as local variables, because parameter...
2007-11-18 Christoph MallonCount local variables for IR generation.
2007-11-18 Christoph MallonIgnore -std=*.
2007-11-18 Christoph MallonDo a localopt and cf opt after 64bit lowering to please...
2007-11-18 Christoph MallonAdd the __func__ token.
2007-11-18 Christoph MallonFix typos in comment.
2007-11-18 Christoph Mallons/#elseif/#elif/.
2007-11-17 Michael Becktypos fixed
2007-11-17 Michael Beckrenamed (reserved C++ keyword) namespace into namespc
2007-11-17 Michael Becklet PREPROCESSOR and LINK to be defined from outside
2007-11-17 Michael Beckadd NORETURN
2007-11-17 Christoph MallonDo no generate body blocks in the first place, when...
2007-11-17 Christoph MallonThe then-part of an if-statement can be empty, too.
2007-11-17 Christoph MallonThe bodies of do-while- and for-loops can be empty...
2007-11-17 Christoph MallonThe body of a while statement can be empty.
2007-11-17 Christoph MallonHandle array + integer.
2007-11-17 Christoph MallonAllow assignment from arrays to pointers.
2007-11-17 Christoph MallonDo 64bit lowering.
2007-11-17 Christoph MallonAdd missing skip_typeref() in select_to_firm().
2007-11-17 Christoph MallonOperand of ! must be of scalar type (was too strict...
2007-11-17 Christoph MallonGenerate IR for calling function pointers.
2007-11-17 Christoph MallonAllow assignment from function designators to function...
2007-11-17 Christoph MallonAllow calling function pointers.
2007-11-17 Christoph MallonImplement pointer arithmetic for += and -=. (Hopefully...
2007-11-17 Christoph MallonFix r463.
2007-11-17 Christoph MallonPrint an explicit error for the attempt to assign to...
2007-11-17 Christoph MallonFix r459: array_type_t is not pointer_type_t.
2007-11-17 Christoph MallonInline load_from_expression_addr() into its only user.
2007-11-17 Christoph MallonHandle IR generation for dereferencing pointers to...
2007-11-17 Christoph MallonUnary * handles arrays, too. Improve the error message...
2007-11-17 Matthias Braunuse short-circuit evaluation like the master taught us
2007-11-17 Christoph MallonHandle IR generation for selection of non-scalar types...
2007-11-17 Christoph MallonHandle IR generation for access to global variables...
2007-11-17 Christoph MallonHandle IR generation for subscription of arrays with...
2007-11-17 Christoph Mallon&& and || accept scalar types, not only arithmetic...
2007-11-17 Matthias Braunimplement ++ and -- for pointers
2007-11-17 Christoph MallonHandle implicit casts from 0 to pointers in comparisons.
2007-11-17 Christoph MallonHandle implicit casts from 0 to pointers.
2007-11-17 Christoph MallonUse skip_typeref() to determine the types in conditiona...
2007-11-17 Christoph MallonGenerate IR for /= and %=.
2007-11-17 Christoph MallonRemove redundant calls to error().
2007-11-17 Christoph MallonHandle non-extern declarations after extern declaration...
2007-11-17 Michael Beck__typeof__ is a GNU extension
2007-11-17 Christoph MallonWarn about empty declarations.
2007-11-17 Christoph MallonIgnore parameters beginning with -D, -O or -f for now...
2007-11-17 Christoph MallonDo not set options which do not exist anymore.
2007-11-16 Michael Beckadd some casts to suppress warnings
2007-11-16 Michael Beckpreliminary Win32 support added
2007-11-16 Michael Beckuse new TYPE_QUALIFIER_NONE to suppress warning
2007-11-16 Michael Beckadd TYPE_QUALIFIER_NONE to suppress warnings (use it...
2007-11-16 Michael Beckremoved abort() declaration, use from stdlib.h
2007-11-16 Matthias Braunit's __GNUC__ not __GCC__
2007-11-16 Christoph MallonHandle fallthrough when generating IR for case labels.
2007-11-16 Christoph MallonMake sure to generate a default ProjX for switch()es...
2007-11-16 Michael Beck__attribute__ is a GCC extension
2007-11-16 Christoph MallonParse octal escape sequences correctly: Do not swallow...
2007-11-16 Matthias Braunfix bug in my last commit
2007-11-16 Matthias Braunfix some struct as local variable problems
2007-11-16 Matthias Braunfix another bug in list handling of environment stack
2007-11-16 Matthias Braunimplement LOCAL_VARIBALE_ENTITY in reference_expression...
2007-11-16 Christoph MallonHandle the derefence operator in expression_to_addr().
2007-11-16 Matthias Braunset address_taken flag
2007-11-16 Matthias Braunwe need _GNU_SOURCE for popen
2007-11-16 Christoph MallonCommunicate via popen() with the preprocessor, to avoid...
2007-11-16 Matthias Braunimplemented/fixed EXPR_SEL
2007-11-16 Matthias Braunfix cond block in do-while loops
2007-11-16 Matthias Braunfix local array allocation
next