| Commit message (Expand) | Author | Age | Files | Lines |
* | [Parser] Don't code-complete twice. | Argyrios Kyrtzidis | 2013-03-27 | 1 | -1/+1 |
* | PR15290: 'this' is not permitted in the declaration of a friend function, | Richard Smith | 2013-03-15 | 1 | -4/+6 |
* | Remove unused variable. | Benjamin Kramer | 2013-03-08 | 1 | -1/+0 |
* | Add support for the OpenCL attribute 'vec_type_hint'. | Joey Gouly | 2013-03-08 | 1 | -10/+37 |
* | Don't accidentally and silently accept C++11 attributes in decl-specifier-seqs | Richard Smith | 2013-02-22 | 1 | -1/+1 |
* | Per the grammar in [dcl.dcl]p1, a simple-declaration can only have attributes | Richard Smith | 2013-02-22 | 1 | -2/+3 |
* | Handle alignas(foo...) pack expansions. | Richard Smith | 2013-02-22 | 1 | -10/+4 |
* | PR15311: Finish implementation of the suggested resolution of core issue 1488, | Richard Smith | 2013-02-20 | 1 | -0/+7 |
* | Process and handle attributes on conditions and for loop variables. Process and | Richard Smith | 2013-02-20 | 1 | -1/+4 |
* | Don't repeat the function name in the comment. | Richard Smith | 2013-02-20 | 1 | -4/+4 |
* | PR15300: Support C++11 attributes on base-specifiers. We don't support any such | Richard Smith | 2013-02-19 | 1 | -0/+19 |
* | Accept over-qualified constructor in MSVC emulation mode | Dmitri Gribenko | 2013-02-12 | 1 | -6/+3 |
* | Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. | Jordan Rose | 2013-02-08 | 1 | -3/+4 |
* | Thread safety analysis: make sure that expressions in attributes are parsed | DeLesley Hutchins | 2013-02-07 | 1 | -0/+1 |
* | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei | 2013-02-07 | 1 | -0/+7 |
* | Downgrade 'attribute ignored when parsing type' from error to warning, to match | Richard Smith | 2013-01-29 | 1 | -1/+1 |
* | Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. | Richard Smith | 2013-01-29 | 1 | -0/+3 |
* | Treat alignas and _Alignas as keyword attributes. This allows us to | Richard Smith | 2013-01-29 | 1 | -10/+6 |
* | Replace AS_MSTypespec with AS_Keyword, for representing any attribute spelled | Richard Smith | 2013-01-29 | 1 | -5/+7 |
* | Finish semantic analysis for [[carries_dependency]] attribute. | Richard Smith | 2013-01-28 | 1 | -2/+7 |
* | Give a more informative error message when the dot or arrow operator is used | Richard Trieu | 2013-01-26 | 1 | -3/+6 |
* | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 2013-01-20 | 1 | -0/+7 |
* | Parsing support for C11's _Noreturn keyword. No semantics yet. | Richard Smith | 2013-01-17 | 1 | -0/+6 |
* | Implement C++11 semantics for [[noreturn]] attribute. This required splitting | Richard Smith | 2013-01-17 | 1 | -0/+2 |
* | *this is const in a trailing-return-type for a constexpr member function. | Richard Smith | 2013-01-14 | 1 | -1/+3 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -1/+1 |
* | Pass false instead of 0 since isStar parameter of getArray has type bool. No ... | Nikola Smiljanic | 2013-01-11 | 1 | -1/+1 |
* | PR14855: don't silently swallow a nested-name-specifier after a type name. | Richard Smith | 2013-01-08 | 1 | -1/+5 |
* | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith | 2013-01-02 | 1 | -12/+12 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -17/+17 |
* | Remove unused arguments and rename to conform to coding standards. | Chad Rosier | 2012-12-21 | 1 | -4/+4 |
* | Indent. | Chad Rosier | 2012-12-21 | 1 | -2/+1 |
* | Remove unnecessary checks. | Chad Rosier | 2012-12-21 | 1 | -6/+3 |
* | Use the MaybeParseMicrosoftAttributes function. | Chad Rosier | 2012-12-20 | 1 | -2/+1 |
* | Revert r170500. It over-zealously converted *ALL* things named Attributes, wh... | Bill Wendling | 2012-12-20 | 1 | -8/+8 |
* | Rename the 'Attributes' class to 'Attribute'. It's going to represent a singl... | Bill Wendling | 2012-12-19 | 1 | -8/+8 |
* | Re-commit r170428 changes with Linux style file endings. | Guy Benyei | 2012-12-18 | 1 | -0/+48 |
* | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei | 2012-12-18 | 1 | -48/+0 |
* | Add OpenCL images as clang builtin types. | Guy Benyei | 2012-12-18 | 1 | -0/+48 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -3/+3 |
* | Don't include Type.h in DeclarationName.h. | Benjamin Kramer | 2012-12-01 | 1 | -0/+1 |
* | Improve diagnostic on C++11 attribute specifiers that appear at wrong syntact... | Michael Han | 2012-11-26 | 1 | -5/+32 |
* | Made the "expected string literal" diagnostic more expressive | Andy Gibbs | 2012-11-17 | 1 | -1/+2 |
* | Accept and pass arguments to __unknown_anytype in argument | John McCall | 2012-11-14 | 1 | -0/+6 |
* | Teach Clang parser to reject C++11 attributes that appertain to declaration s... | Michael Han | 2012-11-06 | 1 | -1/+19 |
* | Thread safety analysis: Fixed ICE caused by double delete when late parsed | DeLesley Hutchins | 2012-11-02 | 1 | -2/+5 |
* | Change diagnostics for enums with fixed underlying type so in C++98 mode, we ... | Eli Friedman | 2012-11-02 | 1 | -4/+7 |
* | 'constexpr' and 'friend' are both declaration specifiers. Teach the parser th... | Richard Smith | 2012-10-25 | 1 | -3/+5 |
* | DR1528: C++11 doesn't allow repeated cv-qualifiers in declarators after all. | Richard Smith | 2012-10-17 | 1 | -6/+6 |
* | Fixed FunctionTypeLoc range for trailing return type. | Abramo Bagnara | 2012-10-15 | 1 | -3/+10 |