| Commit message (Expand) | Author | Age | Files | Lines |
* | Be sure to emit delayed diagnostics after parsing the declaration | John McCall | 2012-01-27 | 1 | -0/+1 |
* | fixes location of "availability" attribute so warning is displayed at | Fariborz Jahanian | 2012-01-23 | 1 | -1/+1 |
* | Make clang's AST model sizeof and typeof with potentially-evaluated operands ... | Eli Friedman | 2012-01-21 | 1 | -2/+14 |
* | Delayed template instantiation of late-parsed attributes. | DeLesley Hutchins | 2012-01-20 | 1 | -1/+1 |
* | Extend the error of invalid token after declarations to include fixits for | Richard Trieu | 2012-01-19 | 1 | -5/+1 |
* | Change the error when a '+=' follows a declaration to suggest a fixit to '=' ... | Richard Trieu | 2012-01-18 | 1 | -2/+6 |
* | objc parsing. Fixes a crash when parsing array initialization | Fariborz Jahanian | 2012-01-13 | 1 | -5/+6 |
* | Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: | Richard Smith | 2012-01-12 | 1 | -1/+4 |
* | Update C++11 scoped enumeration support to match the final proposal: | Richard Smith | 2012-01-10 | 1 | -12/+19 |
* | Extend the diagnostic for a ',' at the end of a declaration where a ';' was | Richard Smith | 2012-01-09 | 1 | -3/+14 |
* | Fixed TypeofExpr AST and code generation. | Abramo Bagnara | 2012-01-07 | 1 | -4/+1 |
* | Tweak to r147599 for PR10828: Move the check from the parser into sema, and use | Richard Smith | 2012-01-06 | 1 | -15/+0 |
* | PR10828: Produce a warning when a no-arguments function is declared in block | Richard Smith | 2012-01-05 | 1 | -0/+15 |
* | Change the diagnostics which said 'accepted as an extension' to instead say | Richard Smith | 2011-12-29 | 1 | -3/+4 |
* | Mass rename C1x references to C11. The name hasn't proliferated like "C++0x" ... | Benjamin Kramer | 2011-12-23 | 1 | -11/+11 |
* | Allow empty argument lists in thread safety attributes | DeLesley Hutchins | 2011-12-14 | 1 | -2/+2 |
* | Add ability to supply additional message to availability macros, | Fariborz Jahanian | 2011-12-10 | 1 | -3/+17 |
* | deprecated enum should not warn when used initializing another deprecated enu... | Fariborz Jahanian | 2011-12-09 | 1 | -0/+4 |
* | Support decltype in nested-name-specifiers. | David Blaikie | 2011-12-04 | 1 | -12/+19 |
* | Revert most of r145372 for now. Lookahead beyond the ';' in a function | Richard Smith | 2011-11-30 | 1 | -16/+1 |
* | PR10101: Recover better from a common copy-paste error: if a function | Richard Smith | 2011-11-29 | 1 | -1/+16 |
* | Tighten up the conditions under which we consider ourselves to be | Douglas Gregor | 2011-11-07 | 1 | -5/+14 |
* | Simplify parsing ellipsis in Parser::ParseAlignArgument, spotted by Doug. | Peter Collingbourne | 2011-10-24 | 1 | -4/+2 |
* | Fix grammar for C++11 alignment specifiers, and add a few FIXMEs. | Peter Collingbourne | 2011-10-23 | 1 | -11/+27 |
* | Improve the diagnostic when a comma ends up at the end of a declarator group | Richard Smith | 2011-10-19 | 1 | -3/+72 |
* | Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! | Douglas Gregor | 2011-10-19 | 1 | -2/+8 |
* | objc: allow class name qualified with protocols in | Fariborz Jahanian | 2011-10-18 | 1 | -1/+11 |
* | objc: diagnose invalid argument to an | Fariborz Jahanian | 2011-10-18 | 1 | -0/+7 |
* | Refactor __attribute__ parsing, and add a diagnostic if the r_paren at the end | Richard Smith | 2011-10-17 | 1 | -95/+61 |
* | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -9/+22 |
* | Provide half floating point support as a storage only type. | Anton Korobeynikov | 2011-10-14 | 1 | -0/+10 |
* | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -68/+80 |
* | Add typo correction for type names. | Kaelyn Uhrain | 2011-10-11 | 1 | -2/+4 |
* | Support for C1x _Atomic specifier (see testcase). This is primarily being co... | Eli Friedman | 2011-10-06 | 1 | -0/+58 |
* | OpenCL: add a non-standard extension, cl_clang_storage_class_specifiers, | Peter Collingbourne | 2011-10-06 | 1 | -16/+16 |
* | Parse attributes written in an ObjC method parameter type as | John McCall | 2011-10-01 | 1 | -2/+0 |
* | Add support for alignment-specifiers in C1X and C++11, remove | Peter Collingbourne | 2011-09-29 | 1 | -0/+65 |
* | Add support for parsing the optional attribute-specifier-seq at the | Peter Collingbourne | 2011-09-29 | 1 | -0/+3 |
* | ArrayRef-ifying the fields passed to Sema::ActOnFields | David Blaikie | 2011-09-22 | 1 | -1/+1 |
* | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -2/+2 |
* | Record the full source range of an attribute. | Argyrios Kyrtzidis | 2011-09-13 | 1 | -17/+18 |
* | __module_private__ is inherited by redeclarations of an entity, and | Douglas Gregor | 2011-09-09 | 1 | -1/+1 |
* | Modules: introduce the __module_private__ declaration specifier, which | Douglas Gregor | 2011-09-09 | 1 | -1/+10 |
* | Thread safety: added support for function scopes in attribute arguments. | Caitlin Sadowski | 2011-09-08 | 1 | -0/+20 |
* | Thread Safety: Patch to implement delayed parsing of attributes within a | Caitlin Sadowski | 2011-09-08 | 1 | -141/+259 |
* | Allow C++0x enumerations with a fixed underlying type in | Douglas Gregor | 2011-09-08 | 1 | -2/+3 |
* | PR10458: Last part of providing 'auto' type specifier as an extension in C++9... | Richard Smith | 2011-09-04 | 1 | -1/+5 |
* | PR10458: Finesse behaviour of C++0x features when in pre-0x mode. Accept for-... | Richard Smith | 2011-09-04 | 1 | -6/+4 |
* | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -10/+6 |
* | objc - fixes a regression in declaring c decls nested in | Fariborz Jahanian | 2011-08-30 | 1 | -0/+3 |