]> granicus.if.org Git - clang/history - Parse/ParseExpr.cpp
add parsing, ast building and pretty printing support for C++ throw expressions.
[clang] / Parse / ParseExpr.cpp
2008-02-26 Chris Lattneradd parsing, ast building and pretty printing support...
2008-02-02 Chris LattnerImplement support for __extension__ which silences...
2008-01-31 Nate BegemanRemainder of the __builtin_overload feedback
2008-01-25 Chris Lattnerremove an implemented todo
2008-01-17 Nate BegemanImplement basic overload support via a new builtin...
2007-12-29 Chris LattnerDon't attribute in file headers anymore. See llvmdev...
2007-12-18 Chris LattnerFix an nice and subtle parser bug reported by Nico...
2007-11-13 Chris LattnerParse "sizeof(arr)[0]" as a sizeof of an expr if arr
2007-10-15 Steve NaroffFix a parser bug with message expressions - need to...
2007-10-15 Anders CarlssonAdd code generation and sema checking for __builtin_va_arg.
2007-10-09 Chris Lattnerswitch more code to use Token::is/isNot where possible.
2007-10-04 Fariborz Jahanianthis patch accomodates clattner's comments on expressio...
2007-10-03 Chris Lattnerminor cleanup
2007-09-26 Fariborz JahanianRemoved a few TODOs on things which are done.
2007-09-19 Fariborz JahanianPatch to parse objective-c's @try-statement and @throw...
2007-09-16 Steve NaroffRename statement actions (from Parse-prefix to ActOn...
2007-09-16 Steve NaroffRename expression actions (from Parse-prefix to ActOn...
2007-09-15 Steve NaroffStart converting Action methods from Parse-prefix to...
2007-09-05 Fariborz Jahanian1. Fix parsing of method prototype involving c-style...
2007-08-31 Chris LattnerFix a bug/missing-feature Ted noticed: the 'unused...
2007-08-31 Chris Lattnerdon't turn semantic errors into parse errors.
2007-08-31 Chris Lattnerfix some memory leaks when recovering.
2007-08-30 Chris LattnerPass the location of the type.
2007-08-30 Chris Lattnermake sure to parse postfix expression suffixes after...
2007-08-30 Chris Lattneradd an action callback for __builtin_offsetof
2007-08-21 Anders CarlssonDon't remove the grammar construct, just the TODO.
2007-08-21 Anders CarlssonRemove objc-string-literal since it's been implemented...
2007-08-21 Anders CarlssonImplement parsing and code generation of Objective...
2007-08-03 Steve NaroffImplement __builtin_choose_expr.
2007-08-01 Steve Naroff- Finish hooking up support for __builtin_types_compati...
2007-08-01 Steve NaroffAdd AST/Sema support for __builtin_types_compatible_p...
2007-07-24 Chris Lattnerimplement ast building and trivial semantic analysis...
2007-07-21 Anders CarlssonImplement code generation for __func__, __FUNCTION__...
2007-07-21 Chris Lattnerimprove and simplify error recovery for calls, fix...
2007-07-20 Chris LattnerAt one point there were going to be lexer and parser...
2007-07-19 Steve NaroffWork towards fixing crasher with compound literals...
2007-07-11 Reid SpencerStage two of getting CFE top correct.