ast2firm: Implement casting from complex to real types.
[cparser] / token.c
2012-12-12 Matthias Braunsimplify license header similar to libFirm
2012-12-01 Matthias Braunrename source_position_t to position_t, rename members...
2012-11-28 Matthias Braundo not fail when initializing tokens multiple times
2012-10-30 Christoph MallonImplement U, u and u8 strings.
2012-07-08 Matthias Braunimplement includefile macro expansion
2012-07-03 Christoph MallonRemove the token registration macro TS.
2012-07-03 Christoph MallonConcatenate T_ earlier to the token names.
2012-06-20 Matthias Braunimplement macro calling
2012-06-20 Matthias Braunalways set symbol for non-literal tokens
2012-06-20 Christoph MallonTurn T_EOF into a properly registered token.
2012-06-20 Christoph MallonRewrite print_token().
2012-06-20 Matthias Braunpreprocessor: keep unknown chars in preproc mode
2012-06-20 Matthias Braunrework preprocessor token number
2012-06-17 Matthias Brauntypedef token_kind_t as int
2012-06-17 Christoph MallonLet the lexer produce preprocessor numbers T_NUMBER...
2012-06-14 Christoph MallonInclude string encoding in string_t.
2012-05-23 Christoph MallonMerge TP_WIDE_CHARACTER_CONSTANT into TP_CHARACTER_CONS...
2012-05-23 Christoph MallonMerge TP_WIDE_STRING_LITERAL into TP_STRING_LITERAL.
2012-05-23 Christoph MallonDo not include the terminating \0 in the size of T_STRI...
2012-05-23 Christoph MallonMerge T_WIDE_CHARACTER_CONSTANT into T_CHARACTER_CONSTANT.
2012-05-23 Christoph MallonAdd the field encoding to struct string_literal_t and...
2012-05-14 Christoph MallonBefore printing a token using its kind, check whether...
2012-05-14 Christoph MallonMove the symbol to token_base_t.
2012-05-06 Christoph MallonRemove the unnecessary distinction between T_FLOATINGPO...
2012-05-06 Christoph MallonRemove the unnecessary distinction between T_INTEGER...
2012-05-05 Christoph MallonSimplify get_symbol_from_token(): All keywords have...
2012-05-05 Christoph MallonRemove T_ERROR and TP_ERROR.
2011-12-21 Sebastian BuchwaldFixed wrong enum type.
2011-09-05 Matthias Braunparse line-directive flags to detect system headers
2011-08-09 Matthias Brauntransform token_t into a union (similar to ast-nodes)
2011-08-09 Matthias Braunredo preprocessor output concerning spaces,newlines
2011-08-09 Matthias Braunfix preprocessing token registration
2011-06-04 Christoph MallonFeature: Show the column number in diagnostic messages.
2011-05-19 Sebastian BuchwaldFixed parameter type.
2010-03-31 Matthias Braunfix -Wunreachable-code warnings
2010-02-24 Matthias Braun- Rework the way literals are handled, these are now...
2009-04-07 Michael Beck- 2009 patch
2009-03-07 Matthias Braunsupport attribute(__const) because it is used in glibc...
2008-11-28 Matthias Braunimprove token display
2008-11-28 Christoph MallonUse fputs/fputc where appropriate.
2008-11-28 Christoph MallonFix typo.
2008-11-14 Michael Beck- fixed a lot of 'enum type mixed with ...' warnings
2008-11-04 Matthias Braunprint tokens without surrounding ''
2008-11-03 Matthias Braunif(n)def implementation
2008-08-15 Matthias Braunuse first token as symbol
2008-03-19 Michael Beckalways transmit const source_position_t * instead of...
2008-02-20 Matthias Brauncommit some files I forgot
2008-02-19 Matthias Braunsome refactoring in preparation for a preprocessor
2008-02-18 Matthias Braunadd license comments
2007-12-12 Christoph MallonHandle string literals with embedded \0 correctly.
2007-12-10 Christoph MallonAssert that tokens are initialized in a somewhat correc...
2007-12-04 Michael Beck- add mostly all GCC/MSVC keywords
2007-11-28 Matthias Braunintroduce some builtin types
2007-11-21 Matthias Braunimprovements to number lexing
2007-11-16 Michael Beckadd some casts to suppress warnings
2007-09-27 Matthias Braun- implemented decimal floating pointer numbers in lexer
2007-07-21 Matthias Braunrefactored lexer code
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-10 Matthias Braunrecognizre preprocessor hashs
2007-06-09 Matthias BraunInitial import of c parser