Age | Commit message (Expand) | Author |
2012-06-19 | Improves parsing and semantic analysis for MS __declspec attributes. This in... | Aaron Ballman |
2012-06-18 | Extend the error recovery for a template-argument-list terminated by '>>' to | Richard Smith |
2012-06-15 | Move isCXXSimpleTypeSpecifier from Parser to Sema and tweak it for wider use. | Kaelyn Uhrain |
2012-06-15 | Check the parameter lists and return type of both blocks and lambdas | Douglas Gregor |
2012-06-06 | Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope | Douglas Gregor |
2012-06-06 | Add pedantic warning -Wempty-translation-unit (C11 6.9p1). | Jordan Rose |
2012-05-29 | Revert r155737, restoring the MaxDepth in the BalancedDelimiterTracker to 256. | Chad Rosier |
2012-05-22 | Recognize the MS inheritance attributes and turn them into attributes | John McCall |
2012-05-16 | Recover better from a missing 'typename' in a function template definition. | Richard Smith |
2012-05-16 | Move the warnings for extra semi-colons under -Wextra-semi. Also, added | Richard Trieu |
2012-05-09 | Push the knowledge that we are parsing a type-id/type-name further into the | Richard Smith |
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-04-30 | Restore paren, bracket and brace counts in parser when | Douglas Gregor |
2012-04-27 | Bump up the MaxDepth in the BalancedDelimiterTracker. | Chad Rosier |
2012-04-19 | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-14 | Parser: Don't manage TemplateAnnotationIds in a delayed cleanup pool. | Benjamin Kramer |
2012-04-14 | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith |
2012-04-12 | Added a flag to the parser to skip method bodies. | Erik Verbruggen |
2012-04-11 | Part of PR10101: after a parse error in a declaration, try harder to find the | Richard Smith |
2012-04-10 | Parsing of C++11 attributes: | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-09 | Fix bugs found by -Wconstant-conversion improvements currently under review. | David Blaikie |
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-09 | [AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY. | Daniel Dunbar |
2012-03-08 | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-03-06 | User-defined literals: reject string and character UDLs in all places where the | Richard Smith |
2012-03-02 | Make late-parsed attributes follow the conventions of ordinary | DeLesley Hutchins |
2012-02-25 | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-23 | Handle "#pragma GCC visibility" in a few more places. Switch over "#pragma p... | Eli Friedman |
2012-02-23 | Update parser's disambiguation to cope with braced function-style casts in | Richard Smith |
2012-02-22 | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-18 | Implement #pragma redefine_extname. | David Chisnall |
2012-02-17 | Disambiguate between C++11 lambda expressions and C99 array | Douglas Gregor |
2012-02-16 | Allow thread safety attributes on function definitions. | DeLesley Hutchins |
2012-02-09 | Kill the brief and full explanation fields from StaticDiagInfoRec. They were ... | Benjamin Kramer |
2012-02-07 | Make parsing of objc @implementations more robust. | Argyrios Kyrtzidis |
2012-02-05 | Basic: import OwningPtr<> into clang namespace | Dylan Noblesmith |
2012-01-27 | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara |
2012-01-26 | Fix our handling of #pragma GCC visibility. | Rafael Espindola |
2012-01-25 | Avoid correcting unknown identifiers to types where types aren't allowed. | Kaelyn Uhrain |
2012-01-19 | Extend the error of invalid token after declarations to include fixits for | Richard Trieu |
2012-01-18 | Change the error when a '+=' follows a declaration to suggest a fixit to '=' ... | Richard Trieu |
2012-01-09 | Extend the diagnostic for a ',' at the end of a declaration where a ';' was | Richard Smith |