| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Add parsing for references to member function templates with explicit | Douglas Gregor | 2009-08-31 | 1 | -1/+24 |
* | Support explicit C++ member operator syntax, from James Porter! | Douglas Gregor | 2009-08-31 | 1 | -2/+29 |
* | Address some of Doug's comments. | Anders Carlsson | 2009-08-26 | 1 | -1/+1 |
* | Parsing of pseudo-destructors. | Anders Carlsson | 2009-08-25 | 1 | -8/+24 |
* | Keep track of the right paren ')' source location in a function declarator. | Argyrios Kyrtzidis | 2009-08-19 | 1 | -1/+2 |
* | Implement __is_empty. Patch by Sean Hunt. | Eli Friedman | 2009-08-15 | 1 | -0/+1 |
* | Take 2 on AltiVec-style vector initializers. | Nate Begeman | 2009-08-10 | 1 | -8/+23 |
* | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar | 2009-08-10 | 1 | -23/+8 |
* | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman | 2009-08-09 | 1 | -8/+23 |
* | Support nested-name-specifiers for C++ member access expressions, e.g., | Douglas Gregor | 2009-08-06 | 1 | -1/+15 |
* | This patch fixes the implementations of the __has_trivial_destructor | Douglas Gregor | 2009-07-23 | 1 | -0/+2 |
* | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith | 2009-07-14 | 1 | -0/+2 |
* | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor | 2009-06-30 | 1 | -1/+1 |
* | Fix the parser error hanlding for __builtin_offsetof to actually print | Eli Friedman | 2009-06-27 | 1 | -6/+7 |
* | Rework the way we track which declarations are "used" during | Douglas Gregor | 2009-06-22 | 1 | -3/+6 |
* | Keep track of when declarations are "used" according to C and | Douglas Gregor | 2009-06-19 | 1 | -1/+21 |
* | PR4364: fix parsing 'typename' in an expression. | Eli Friedman | 2009-06-11 | 1 | -1/+7 |
* | Disallow exception specs on typedefs. | Sebastian Redl | 2009-05-31 | 1 | -1/+2 |
* | Reject incomplete types in exception specs. | Sebastian Redl | 2009-05-29 | 1 | -1/+1 |
* | Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b... | Argyrios Kyrtzidis | 2009-05-22 | 1 | -3/+34 |
* | Factor the compound literal parsing out from ParseParenExpression and into a ... | Argyrios Kyrtzidis | 2009-05-22 | 1 | -7/+21 |
* | Modification to ParseParenExpression. | Argyrios Kyrtzidis | 2009-05-22 | 1 | -16/+25 |
* | Refactor the common code of 'ParseTypeofSpecifier' and 'ParseSizeofAlignofExp... | Argyrios Kyrtzidis | 2009-05-22 | 1 | -19/+72 |
* | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor | 2009-05-21 | 1 | -1/+0 |
* | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad | 2009-05-21 | 1 | -1/+1 |
* | Make the RAII extension warning silencing for __extension__ a bit | Eli Friedman | 2009-05-16 | 1 | -2/+8 |
* | Fixup __extension__ i = 1 parsing. Thanks Eli! | Mike Stump | 2009-05-16 | 1 | -1/+1 |
* | Fixup parsing for (throw,throw) and __extension__ throw 1. | Mike Stump | 2009-05-15 | 1 | -9/+2 |
* | Implement C++0x nullptr. | Sebastian Redl | 2009-05-10 | 1 | -0/+4 |
* | Remove extra line. | Mike Stump | 2009-04-29 | 1 | -1/+0 |
* | Fixup Sema and CodeGen for block literal attributes when the return | Mike Stump | 2009-04-29 | 1 | -0/+4 |
* | Sema and CodeGen support for attributes on blocks. Radar 6441502 | Mike Stump | 2009-04-29 | 1 | -0/+21 |
* | Have the parser communicate the exception specification to the action. | Sebastian Redl | 2009-04-29 | 1 | -2/+3 |
* | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner | 2009-04-25 | 1 | -1/+1 |
* | fix two error paths out of ParseBlockLiteralExpression to | Chris Lattner | 2009-04-18 | 1 | -0/+2 |
* | Add support for the __has_trivial_destructor type trait. | Anders Carlsson | 2009-04-17 | 1 | -1/+2 |
* | Fix a crash bug when comparing overload quality of conversion operators with ... | Sebastian Redl | 2009-04-16 | 1 | -1/+12 |
* | Add support for the __has_trivial_constructor type trait. | Anders Carlsson | 2009-04-16 | 1 | -1/+2 |
* | Fixup whitespacing. | Mike Stump | 2009-04-14 | 1 | -1/+1 |
* | Improve error recovery for calls, fixing: | Chris Lattner | 2009-04-13 | 1 | -3/+8 |
* | Fix http://llvm.org/bugs/show_bug.cgi?id=3907. | Steve Naroff | 2009-04-02 | 1 | -1/+2 |
* | Initial implementation of parsing, semantic analysis, and template | Douglas Gregor | 2009-03-27 | 1 | -0/+1 |
* | Fix rdar://6719156 - clang should emit a better error when blocks are disable... | Chris Lattner | 2009-03-27 | 1 | -12/+8 |
* | improve error recovery for when type parsing fails. | Chris Lattner | 2009-03-24 | 1 | -1/+5 |
* | Keep track of whether a class is abstract or not. This is currently only used... | Anders Carlsson | 2009-03-22 | 1 | -0/+1 |
* | Convert a bunch of actions to smart pointers, and also bring PrintParserCallb... | Sebastian Redl | 2009-03-15 | 1 | -8/+6 |
* | Implement property '.' notation on Factory/Class objects. Parser changes aren... | Steve Naroff | 2009-03-09 | 1 | -0/+22 |
* | if we crash while parsing a block literal, include it. | Chris Lattner | 2009-03-05 | 1 | -1/+5 |
* | Implemented access check for ivars accessed inside | Fariborz Jahanian | 2009-03-04 | 1 | -1/+2 |
* | Introduce code modification hints into the diagnostics system. When we | Douglas Gregor | 2009-02-26 | 1 | -2/+11 |