| Commit message (Expand) | Author | Age | Files | Lines |
| * | Implement correct name lookup inside an initializer of a C++ class static dat... | Argyrios Kyrtzidis | 2009-06-17 | 1 | -0/+7 |
| * | It's an error to use a function declared in a class definition as a default a... | Anders Carlsson | 2009-06-12 | 1 | -1/+2 |
| * | Add more parser support for Microsoft extensions. | Eli Friedman | 2009-06-08 | 1 | -23/+48 |
| * | Add real parsing for __declspec. It doesn't make much of a difference | Eli Friedman | 2009-06-08 | 1 | -11/+43 |
| * | Disallow exception specs on typedefs. | Sebastian Redl | 2009-05-31 | 1 | -3/+8 |
| * | AddInitializerToDecl needs to take a full expression. | Anders Carlsson | 2009-05-30 | 1 | -1/+1 |
| * | Reject incomplete types in exception specs. | Sebastian Redl | 2009-05-29 | 1 | -18/+24 |
| * | If a declarator group declares a type, make sure to add that declaration | Eli Friedman | 2009-05-29 | 1 | -1/+2 |
| * | When we parse a tag specifier, keep track of whether that tag | Douglas Gregor | 2009-05-28 | 1 | -2/+4 |
| * | Refactor the common code of 'ParseTypeofSpecifier' and 'ParseSizeofAlignofExp... | Argyrios Kyrtzidis | 2009-05-22 | 1 | -38/+22 |
| * | Parse typeof-specifier the same way as sizeof/alignof are parsed. | Argyrios Kyrtzidis | 2009-05-22 | 1 | -48/+39 |
| * | 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 | -5/+5 |
| * | Implement a FIXME, we now pass in the locations of the braces for enums. | Mike Stump | 2009-05-16 | 1 | -3/+3 |
| * | Implement parsing for explicit instantiations of class templates, e.g., | Douglas Gregor | 2009-05-12 | 1 | -17/+11 |
| * | Refactor the parsing of declarations so that template declarations can | Douglas Gregor | 2009-05-12 | 1 | -68/+89 |
| * | Add parsing of friend specifiers. | Anders Carlsson | 2009-05-06 | 1 | -0/+7 |
| * | Rework the way we handle constructor decls to be less hacky and fix PR3948 co... | Anders Carlsson | 2009-04-30 | 1 | -10/+11 |
| * | Just because a declaration has the same name as its containing class doesn't ... | Anders Carlsson | 2009-04-29 | 1 | -10/+10 |
| * | Have the parser communicate the exception specification to the action. | Sebastian Redl | 2009-04-29 | 1 | -6/+31 |
| * | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner | 2009-04-25 | 1 | -1/+1 |
| * | fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) | Chris Lattner | 2009-04-24 | 1 | -0/+1 |
| * | Fixup codegen for write barriers for block variables. Radar 6786715 | Mike Stump | 2009-04-21 | 1 | -1/+1 |
| * | Make the implicit-int handling error recovery stuff handle C++ | Chris Lattner | 2009-04-14 | 1 | -20/+34 |
| * | refactor "implicit int error recovery" code out of | Chris Lattner | 2009-04-14 | 1 | -62/+83 |
| * | Fix a regression in a previous patch that broke implicit | Chris Lattner | 2009-04-14 | 1 | -2/+4 |
| * | fix a comment typo Sebastian noticed. | Chris Lattner | 2009-04-12 | 1 | -1/+1 |
| * | add support for handling C++'0x unified initializer syntax | Chris Lattner | 2009-04-12 | 1 | -2/+2 |
| * | Fix some C++ error recovery problems in init declarator parsing | Chris Lattner | 2009-04-12 | 1 | -6/+3 |
| * | mark the declspec as invalid when we recover instead of forcing to int, | Chris Lattner | 2009-04-12 | 1 | -3/+3 |
| * | Diagnose invalid uses of tagged types with a missing tag. For example, in: | Chris Lattner | 2009-04-12 | 1 | -20/+44 |
| * | Implement the first set of changes for PR3963 and rdar://6759604, | Chris Lattner | 2009-04-12 | 1 | -4/+71 |
| * | add fixit advice to an archiac ObjC issue. | Chris Lattner | 2009-04-03 | 1 | -0/+1 |
| * | fix a FIXME, providing accurate source range info for DeclStmt's. The end | Chris Lattner | 2009-04-02 | 1 | -7/+12 |
| * | Add code modification hints to various parsing-related diagnostics. | Douglas Gregor | 2009-04-01 | 1 | -5/+9 |
| * | Make parsing a semantic analysis a little more robust following Sema | Douglas Gregor | 2009-04-01 | 1 | -11/+15 |
| * | Parsing and AST representation for dependent template names that occur | Douglas Gregor | 2009-03-31 | 1 | -2/+2 |
| * | hoist some code for handling objc foreach construct out of Declaration proces... | Chris Lattner | 2009-03-29 | 1 | -11/+9 |
| * | hoist checks for ; and in out of ParseInitDeclaratorListAfterFirstDeclarator | Chris Lattner | 2009-03-29 | 1 | -28/+28 |
| * | Push DeclGroup much farther throughout the compiler. Now the various | Chris Lattner | 2009-03-29 | 1 | -23/+36 |
| * | Introduce a new OpaquePtr<N> struct type, which is a simple POD wrapper for a | Chris Lattner | 2009-03-28 | 1 | -33/+36 |
| * | tidy whitespace. | Chris Lattner | 2009-03-28 | 1 | -3/+4 |
| * | Initial implementation of parsing, semantic analysis, and template | Douglas Gregor | 2009-03-27 | 1 | -0/+11 |
| * | Fix rdar://6719156 - clang should emit a better error when blocks are disable... | Chris Lattner | 2009-03-27 | 1 | -4/+3 |
| * | Simplify CXXScopeSpec a lot. No more weird SmallVector-like hacks here | Douglas Gregor | 2009-03-26 | 1 | -2/+1 |
| * | Pass access specifiers through to member classes and member enums. | Douglas Gregor | 2009-03-25 | 1 | -5/+6 |
| * | Fix parsing of template classes prefixed by nested-name-specifiers | Douglas Gregor | 2009-03-25 | 1 | -2/+14 |
| * | Parse deleted function definitions and hook them up to Doug's machinery. | Sebastian Redl | 2009-03-24 | 1 | -9/+19 |
| * | random cleanups. | Chris Lattner | 2009-03-24 | 1 | -3/+5 |
| * | Recognize rvalue references in C++03, but complain about them. This leads to ... | Sebastian Redl | 2009-03-23 | 1 | -2/+8 |