| Commit message (Expand) | Author | Age | Files | Lines |
* | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei | 2013-02-07 | 1 | -0/+1 |
* | Micro change: moved '{' for better readability (+don't confuse -Wimplicit-fal... | Alexander Kornienko | 2013-02-01 | 1 | -5/+5 |
* | Produce a diagnostic if alignas is applied to an expression. Neither C11 nor | Richard Smith | 2013-01-29 | 1 | -3/+6 |
* | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei | 2013-01-20 | 1 | -0/+1 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -5/+5 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -8/+8 |
* | Move operator precedence calculation to new header | Daniel Jasper | 2012-12-20 | 1 | -61/+0 |
* | Re-commit r170428 changes with Linux style file endings. | Guy Benyei | 2012-12-18 | 1 | -1/+7 |
* | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei | 2012-12-18 | 1 | -7/+1 |
* | Add OpenCL images as clang builtin types. | Guy Benyei | 2012-12-18 | 1 | -1/+7 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -4/+4 |
* | Fixed FunctionTypeLoc source range. | Abramo Bagnara | 2012-10-04 | 1 | -12/+22 |
* | Fix an edge case of mangling involving the combination of a lambda and typeid. | Eli Friedman | 2012-09-26 | 1 | -1/+2 |
* | Add the Microsoft __is_interface_class type trait. | John McCall | 2012-09-25 | 1 | -0/+1 |
* | If a comma operator is followed by a token which unambiguously indicates the | Richard Smith | 2012-09-18 | 1 | -0/+22 |
* | Remove unused macro definition | Douglas Gregor | 2012-09-11 | 1 | -2/+0 |
* | Extend the "__is_pod" hack, which demotes various type trait keywords | Douglas Gregor | 2012-08-30 | 1 | -1/+50 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -5/+5 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -30/+30 |
* | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith | 2012-07-30 | 1 | -1/+1 |
* | Add support for the C11 _Alignof keyword. | Jordan Rose | 2012-06-30 | 1 | -9/+17 |
* | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber | 2012-06-23 | 1 | -0/+1 |
* | Documentation cleanup: fixing file headers to use Doxygen \file markup while | James Dennett | 2012-06-19 | 1 | -1/+3 |
* | Documentation cleanup: | James Dennett | 2012-06-17 | 1 | -43/+65 |
* | Check the parameter lists and return type of both blocks and lambdas | Douglas Gregor | 2012-06-15 | 1 | -5/+5 |
* | Documentation cleanup: escape Objective-C @ symbols in Doxygen comments. | James Dennett | 2012-06-15 | 1 | -5/+5 |
* | Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope | Douglas Gregor | 2012-06-06 | 1 | -1/+0 |
* | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith | 2012-05-02 | 1 | -1/+1 |
* | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor | 2012-04-16 | 1 | -1/+1 |
* | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith | 2012-04-14 | 1 | -3/+1 |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -1/+9 |
* | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith | 2012-04-04 | 1 | -0/+1 |
* | Enter an expression evaluation context when parsing | John McCall | 2012-04-04 | 1 | -1/+7 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -32/+32 |
* | Support for raw and template forms of numeric user-defined literals, | Richard Smith | 2012-03-09 | 1 | -9/+4 |
* | Streamline BalancedDelimiterTracker, by eliminating the duplicate | Douglas Gregor | 2012-03-08 | 1 | -6/+11 |
* | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -0/+13 |
* | User-defined literals: reject string and character UDLs in all places where the | Richard Smith | 2012-03-06 | 1 | -8/+15 |
* | Avoid examining the AST from the parser, and simplify somewhat. | Richard Smith | 2012-03-01 | 1 | -15/+13 |
* | Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. Also | Richard Smith | 2012-03-01 | 1 | -12/+28 |
* | Make the odr-use logic work correctly for constant-expressions. PR12006. | Eli Friedman | 2012-02-29 | 1 | -1/+2 |
* | Half of PR12088: parse braced-init-lists on the RHS of assignment operators. | Richard Smith | 2012-02-26 | 1 | -3/+14 |
* | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles | 2012-02-25 | 1 | -4/+4 |
* | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+3 |
* | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor | 2012-02-23 | 1 | -0/+1 |
* | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain | 2012-02-22 | 1 | -2/+2 |
* | Change wording of warning about using __bridge casts in non-ARC. | Ted Kremenek | 2012-02-18 | 1 | -1/+1 |
* | Reject continue/break statements within members of local functions nested within | Richard Smith | 2012-02-17 | 1 | -1/+0 |
* | In Objective-C++, allow the keyword 'class' to be used as a property | Douglas Gregor | 2012-02-16 | 1 | -6/+20 |
* | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -2/+2 |