ast2firm: Implement casting from complex to real types.
[cparser] / tokens.inc
2012-12-12 Matthias Braunsimplify license header similar to libFirm
2012-07-09 Christoph MallonAdd the option c11 to -std and add the C11 keywords.
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-07-03 Christoph MallonRemove _ANSI.
2012-06-20 Matthias Braunimplement macro calling
2012-06-20 Christoph MallonTurn T_EOF into a properly registered token.
2012-06-20 Matthias Braunpreprocessor: keep unknown chars in preproc mode
2012-06-20 Matthias Braunrework preprocessor token number
2012-06-17 Christoph MallonLet the lexer produce preprocessor numbers T_NUMBER...
2012-05-23 Christoph MallonRemove the unused T_WIDE_CHARACTER_CONSTANT.
2012-05-23 Christoph MallonTurn __FUNCTION__ into an alias for __func__.
2012-05-23 Christoph MallonAdd the field encoding to struct string_literal_t and...
2012-05-06 Christoph MallonRemove the unnecessary distinction between T_FLOATINGPO...
2012-05-06 Christoph MallonRemove the unnecessary distinction between T_INTEGER...
2012-05-04 Matthias Brauninline is known to GNU89
2011-06-27 Christoph MallonCorrect token encoding: wide string literals L"" and...
2011-02-24 Christoph MallonThere is no need to #ifdef an identifier before #undefi...
2010-02-24 Matthias Braun- Rework the way literals are handled, these are now...
2009-07-06 Michael Beck- icc 11 defines __ptr32
2009-01-03 Michael Beck- implemented va_copy(), needed for C99
2008-12-27 Michael BeckRemoved EXPR_BUILTIN_SYMBOL: Builtins are now predefine...
2008-12-24 Michael Beck- implemented __builtin_trap()
2008-12-23 Michael Beck- implemented __builtin_(ffs|ctz|clz|popcount|parity)
2008-12-18 Christoph MallonImplement __builtin_types_compatible_p().
2008-12-17 Michael Beck- implemented __builtin_(return|frame)_address() FE...
2008-12-08 Moritz KrollAdapted tokens.inc for Cygwin and MinGW
2008-11-14 Matthias BraunMore work for C++ mode:
2008-11-10 Christoph MallonParse C++ bool, false and true.
2008-10-26 Christoph MallonAdd C++ keywords.
2008-10-02 Christoph MallonParse __builtin_inf{,f,l} and correct __builtin_nand...
2008-09-11 Michael Beck_Win32 build fix
2008-09-07 Matthias Braunbunch of mac fixes and improvements
2008-08-07 Christoph MallonSlightly simplify token declarations.
2008-05-30 Matthias Braunfix extern inline handling, implement __builtin_huge_val
2008-05-27 Matthias Braunmake extensions starting with __ available for all...
2008-05-27 Matthias Braunmake extensions starting with __ available for all...
2008-03-19 Matthias Braunadd a few more keyword synonmys found in gcc source
2008-03-19 Matthias Braun__signed is a synonym for signed
2008-03-18 Michael Beckadded GNU complex keywords
2008-03-18 Michael Beckadded __FUNCSIG__ and __FUNCDNAME__
2008-03-18 Michael Beck- fixed names of MS keywords
2008-03-17 Michael Beckimplement MS type extension types
2008-03-13 Michael Beckimplemented anchor set
2008-03-06 Michael Beckpreliminary support for MS __declspec()
2008-03-06 Michael Beck__w64 keyword added in MS mode
2008-02-19 Matthias Braunsome refactoring in preparation for a preprocessor
2007-12-28 Matthias Braunfix some wrong tokens
2007-12-19 Michael BeckMulti-line character constants implemented
2007-12-10 Christoph MallonGCC understands __asm, too.
2007-12-10 Christoph MallonRepair the order of tokens.
2007-12-07 Michael Beck__builtin_prefetch implemented
2007-12-07 Michael Beck__builtin_constant_p() implemented
2007-12-04 Michael Beck- add mostly all GCC/MSVC keywords
2007-11-30 Matthias Braunmerge UNEXPR and BINEXPR enums with EXPR enum
2007-11-30 Christoph MallonAdd support for variadic arguments.
2007-11-29 Christoph MallonFirst iteration in adding wide string literal support...
2007-11-28 Matthias Braunimplemented builtin_nan, nand
2007-11-28 Matthias Braun- create strict convs where necessary
2007-11-27 Matthias Braunadd parsing of asm statements, avoid some statement...
2007-11-21 Matthias Braunsupport for alloca
2007-11-18 Christoph MallonImplement the GCC insani^Wextension __builtin_classify_...
2007-11-18 Christoph MallonAdd the __func__ token.
2007-11-12 Matthias Braunmore work on local variable support
2007-09-28 Matthias Braunbugfixes, parse initializers
2007-09-27 Matthias Braun- implemented decimal floating pointer numbers in lexer
2007-09-17 Matthias Braunsupport for more builtins, additional bugfixes
2007-09-16 Matthias Braun- countless bugfixes
2007-09-08 Matthias Braunhandle multiple strings in a row
2007-07-21 Matthias Braunrefactored lexer code
2007-07-14 Matthias Braunmore work on parser, stdio.h is fully parsed now
2007-06-19 Matthias Braunchanged the way preprocessing directives are parsed
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