Age | Commit message (Expand) | Author |
2009-07-31 | Rename Action::TagKind to Action::TagUseKind, which removes both a misnomer | John McCall |
2009-07-31 | sp. | John McCall |
2009-07-23 | Clean up the ActOnTag action, so that there is only a single entry | Douglas Gregor |
2009-07-20 | Issue a more descriptive diagnostics when mis-declaring | Fariborz Jahanian |
2009-07-14 | Basic support for C++0x unicode types. Support for literals will follow in a... | Alisdair Meredith |
2009-07-14 | Pass the right brace SourceLocation from the Parser to the TagDecls. | Argyrios Kyrtzidis |
2009-07-11 | Implement more of C++0x 'auto'. A variable with an auto type specifier must h... | Anders Carlsson |
2009-07-06 | Parsing fix for out-of-line constructors, from Piotr Rak | Douglas Gregor |
2009-07-06 | Keep track of the Expr used to describe the size of an array type, | Douglas Gregor |
2009-06-30 | Fix: <rdar://problem/7021553> clang -fsyntax-only crashes (in ParseDeclaratio... | Ted Kremenek |
2009-06-26 | Fix test. | Anders Carlsson |
2009-06-26 | Implement enough of the 'auto' keyword so we can claim to support N2546. | Anders Carlsson |
2009-06-26 | OpenCL 1.0 support: attributes | Nate Begeman |
2009-06-24 | Parse the C++0x decltype specifier. | Anders Carlsson |
2009-06-23 | Start propagating template parameter lists to the right places to | Douglas Gregor |
2009-06-22 | Implement implicit instantiation of the member functions of a class template | Douglas Gregor |
2009-06-19 | Keep track of when declarations are "used" according to C and | Douglas Gregor |
2009-06-17 | Implement correct name lookup inside an initializer of a C++ class static dat... | Argyrios Kyrtzidis |
2009-06-12 | It's an error to use a function declared in a class definition as a default a... | Anders Carlsson |
2009-06-08 | Add more parser support for Microsoft extensions. | Eli Friedman |
2009-06-08 | Add real parsing for __declspec. It doesn't make much of a difference | Eli Friedman |
2009-05-31 | Disallow exception specs on typedefs. | Sebastian Redl |
2009-05-30 | AddInitializerToDecl needs to take a full expression. | Anders Carlsson |
2009-05-29 | Reject incomplete types in exception specs. | Sebastian Redl |
2009-05-29 | If a declarator group declares a type, make sure to add that declaration | Eli Friedman |
2009-05-28 | When we parse a tag specifier, keep track of whether that tag | Douglas Gregor |
2009-05-22 | Refactor the common code of 'ParseTypeofSpecifier' and 'ParseSizeofAlignofExp... | Argyrios Kyrtzidis |
2009-05-22 | Parse typeof-specifier the same way as sizeof/alignof are parsed. | Argyrios Kyrtzidis |
2009-05-21 | Merge the ASTVector and ASTOwningVector templates, since they offered | Douglas Gregor |
2009-05-21 | Use v.data() instead of &v[0] when SmallVector v might be empty. | Jay Foad |
2009-05-16 | Implement a FIXME, we now pass in the locations of the braces for enums. | Mike Stump |
2009-05-12 | Implement parsing for explicit instantiations of class templates, e.g., | Douglas Gregor |
2009-05-12 | Refactor the parsing of declarations so that template declarations can | Douglas Gregor |
2009-05-06 | Add parsing of friend specifiers. | Anders Carlsson |
2009-04-30 | Rework the way we handle constructor decls to be less hacky and fix PR3948 co... | Anders Carlsson |
2009-04-29 | Just because a declaration has the same name as its containing class doesn't ... | Anders Carlsson |
2009-04-29 | Have the parser communicate the exception specification to the action. | Sebastian Redl |
2009-04-25 | This is a pretty big cleanup for how invalid decl/type are handle. | Chris Lattner |
2009-04-24 | fix the sizeof error recovery issue (sizeof-interface.m:attributeRuns) | Chris Lattner |
2009-04-21 | Fixup codegen for write barriers for block variables. Radar 6786715 | Mike Stump |
2009-04-14 | Make the implicit-int handling error recovery stuff handle C++ | Chris Lattner |
2009-04-14 | refactor "implicit int error recovery" code out of | Chris Lattner |
2009-04-14 | Fix a regression in a previous patch that broke implicit | Chris Lattner |
2009-04-12 | fix a comment typo Sebastian noticed. | Chris Lattner |
2009-04-12 | add support for handling C++'0x unified initializer syntax | Chris Lattner |
2009-04-12 | Fix some C++ error recovery problems in init declarator parsing | Chris Lattner |
2009-04-12 | mark the declspec as invalid when we recover instead of forcing to int, | Chris Lattner |
2009-04-12 | Diagnose invalid uses of tagged types with a missing tag. For example, in: | Chris Lattner |
2009-04-12 | Implement the first set of changes for PR3963 and rdar://6759604, | Chris Lattner |
2009-04-03 | add fixit advice to an archiac ObjC issue. | Chris Lattner |