Age | Commit message (Expand) | Author |
2009-01-04 | simplify control flow by removing a goto. | Chris Lattner |
2009-01-04 | eliminate lookahead when parsing ::new / ::delete. | Chris Lattner |
2009-01-04 | minor simplifications. | Chris Lattner |
2008-12-30 | Parser support for C++ using directives, from Piotr Rak | Douglas Gregor |
2008-12-28 | Convert a two more statement actions to smart pointers. | Sebastian Redl |
2008-12-28 | Diagnose declarations that don't declare anything, and fix PR3020. | Sebastian Redl |
2008-12-26 | Add support for out-of-line definitions of conversion functions and member op... | Douglas Gregor |
2008-12-25 | Add parser support for __forceinline, __w64, __ptr64. | Steve Naroff |
2008-12-25 | Add parser support for __cdecl, __stdcall, and __fastcall. | Steve Naroff |
2008-12-24 | Add explicit "fuzzy" parse support for Microsoft declspec. | Steve Naroff |
2008-12-24 | Keep track of template arguments when we parse them. Right now, we don't actu... | Douglas Gregor |
2008-12-24 | Correct the order in which we cope with end-of-class-definition | Douglas Gregor |
2008-12-23 | Don't explicitly represent OverloadedFunctionDecls within | Douglas Gregor |
2008-12-22 | Partial AST and Sema support for C++ try-catch. | Sebastian Redl |
2008-12-21 | Parser support for C++ try-catch. | Sebastian Redl |
2008-12-21 | Convert a few Stmt actions to smart pointers. | Sebastian Redl |
2008-12-18 | Ultrasimplistic sketch for the parsing of C++ template-ids. This won't | Douglas Gregor |
2008-12-18 | add a simple fast-path for the common case of [] and [4] in | Chris Lattner |
2008-12-18 | disallow attributes in a few callers of ParseTypeQualifierListOpt, | Chris Lattner |
2008-12-18 | Clean up the C89/C++ warnings about C99 array features to not | Chris Lattner |
2008-12-18 | implement PR3177 - "__extension__ union" not supported in C++ mode | Chris Lattner |
2008-12-17 | Do proper recovery from an invalid switch condiition. Fixes PR3229. | Eli Friedman |
2008-12-17 | Removed the warning | Douglas Gregor |
2008-12-17 | Semantics of @protocol attributes. | Fariborz Jahanian |
2008-12-16 | Make linkage-specifications hold on to all of their declarations | Douglas Gregor |
2008-12-16 | Delay parsing of default arguments of member functions until the class | Douglas Gregor |
2008-12-13 | Some utilities for using the smart pointers in Actions, especially Sema. Conv... | Sebastian Redl |
2008-12-13 | Convert remaining expression parsers to smart pointers. Now on to the Action ... | Sebastian Redl |
2008-12-12 | fix a buggy fall through that caused a crash-on-invalid. rdar://6248081 | Chris Lattner |
2008-12-12 | use smarter error recovery for do/while. | Chris Lattner |
2008-12-12 | apply the new error recovery smarts we have for if's to while's and switch's. | Chris Lattner |
2008-12-12 | merge recovery-2.c into recovery-3.c. | Chris Lattner |
2008-12-12 | minor refactoring of ParseParenExpression | Chris Lattner |
2008-12-11 | Convert a big bunch of expression parsers to use smart pointers. | Sebastian Redl |
2008-12-11 | Convert some more expression parsers to use smart pointers. | Sebastian Redl |
2008-12-11 | Convert selected expression parsers to use smart pointers. | Sebastian Redl |
2008-12-11 | Convert the remaining statement parsers to smart pointers. | Sebastian Redl |
2008-12-11 | Convert some more statement parsers to smart pointers. | Sebastian Redl |
2008-12-11 | Convert a number of statement parsers to smart pointers. | Sebastian Redl |
2008-12-11 | Unifies the name-lookup mechanisms used in various parts of the AST | Douglas Gregor |
2008-12-10 | Added a warning when referencing an if's condition variable in the | Douglas Gregor |
2008-12-10 | Use a scoped object to manage entry/exit from a parser scope rather than expl... | Douglas Gregor |
2008-12-10 | Modify the move emulation according to the excellent design of Howard Hinnant... | Sebastian Redl |
2008-12-09 | Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult | Sebastian Redl |
2008-12-09 | Lay the groundwork for converting the entire parser-sema chain to smart point... | Sebastian Redl |
2008-12-09 | Consistently use smart pointers for stmt and expr nodes in parser local varia... | Sebastian Redl |
2008-12-08 | Fix PR3172: if we see an eof or } at the top level, reject it. | Chris Lattner |
2008-12-08 | improve comment. | Chris Lattner |
2008-12-08 | fix typo. | Zhongxing Xu |
2008-12-06 | Add support for calls to dependent names within templates, e.g., | Douglas Gregor |