Age | Commit message (Expand) | Author |
2012-05-09 | Push the knowledge that we are parsing a type-id/type-name further into the | Richard Smith |
2012-05-09 | Stop AltiVec parsing from going down the 'implicit int' codepath as part of its | Richard Smith |
2012-05-07 | Change how we suppress access control in explicit instantiations | John McCall |
2012-05-07 | Refactor DelayedDiagnostics so that it keeps diagnostics in | John McCall |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-05-02 | Disable our non-standard delayed parsing of exception specifications. Delaying | Richard Smith |
2012-04-28 | switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. ... | Chris Lattner |
2012-04-27 | Imrpove the note text for when a non-type decl hides a tag type | Kaelyn Uhrain |
2012-04-26 | Add note to help explain why a tag such as 'struct' is needed to refer | Kaelyn Uhrain |
2012-04-24 | Don't try to delay parsing the exception specification for a data member of a | Richard Smith |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-04-14 | Delete late parsed attributes instead of leaking them. | Benjamin Kramer |
2012-04-14 | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith |
2012-04-11 | Part of PR10101: after a parse error in a declaration, try harder to find the | Richard Smith |
2012-04-11 | Support C++11 attributes at the start of a parameter-declaration. | Richard Smith |
2012-04-10 | Fix GCC's pedantic return-type warning -- this enum is fully covered. | Chandler Carruth |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-06 | Fixed scoping error for late parsed attributes in nested classes. | DeLesley Hutchins |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-03-29 | Reject 'template<typename...Ts> void f(Ts ...(x));'. Add a special-case | Richard Smith |
2012-03-27 | If we see '(...' where we're expecting an abstract-declarator, that doesn't | Richard Smith |
2012-03-27 | Add cross-referencing comments to ParseDirectDeclarator to note that | Richard Smith |
2012-03-27 | When we see 'Class(X' or 'Class::Class(X' and we suspect that it names a | Richard Smith |
2012-03-23 | Support for definitions of member enumerations of class templates outside the | Richard Smith |
2012-03-18 | Add the missing compatibility warning for braced initializers as default argu... | Sebastian Redl |
2012-03-15 | Small cleanup: move trailing-return-type special-casing into | Richard Smith |
2012-03-14 | Parse brace initializers as default arguments. PR12236. | Sebastian Redl |
2012-03-12 | Fix parsing of trailing-return-type. Types are syntactically prohibited from | Richard Smith |
2012-03-12 | Fix parsing of type-specifier-seq's. Types are syntactically allowed to be | Richard Smith |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
2012-03-11 | Document the availability attribute | Douglas Gregor |
2012-03-09 | Support for raw and template forms of numeric user-defined literals, | Richard Smith |
2012-03-08 | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor |
2012-03-07 | Refactor Clang sema attribute handling. | Michael Han |
2012-03-02 | Issue warning when late-parsed attributes have no declaration. | DeLesley Hutchins |
2012-03-02 | Make late-parsed attributes follow the conventions of ordinary | DeLesley Hutchins |
2012-03-01 | Added support for parsing declspecs on enumerations. Fixes PR8783 | Aaron Ballman |
2012-02-29 | Reapply r151638 and r151641. | James Molloy |
2012-02-28 | Revert r151638 because it causes assertion hit on PCH creation for Cocoa.h | Argyrios Kyrtzidis |
2012-02-28 | Correctly track tags and enum members defined in the prototype of a function,... | James Molloy |
2012-02-23 | Update parser's disambiguation to cope with braced function-style casts in | Richard Smith |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-16 | Allow thread safety attributes on function definitions. | DeLesley Hutchins |
2012-02-11 | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl |
2012-02-11 | Drive-by fix of incorrect diagnostic, and a test case for said diagnostic. Th... | Sebastian Redl |
2012-02-07 | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis |
2012-02-05 | Basic: import SmallString<> into clang namespace | Dylan Noblesmith |
2012-02-04 | Move a method from IdentifierTable.h out of line and remove the SmallString i... | Benjamin Kramer |