Age | Commit message (Expand) | Author |
2013-05-05 | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko |
2013-04-26 | Implement C++1y decltype(auto). | Richard Smith |
2013-04-02 | Objective-C arc [qui]. Don't issue the bridge cast | Fariborz Jahanian |
2013-03-27 | Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_t... | Joao Matos |
2013-02-07 | Add OpenCL samplers as Clang builtin types and check sampler related restrict... | Guy Benyei |
2013-02-01 | Micro change: moved '{' for better readability (+don't confuse -Wimplicit-fal... | Alexander Kornienko |
2013-01-29 | Produce a diagnostic if alignas is applied to an expression. Neither C11 nor | Richard Smith |
2013-01-20 | Implement OpenCL event_t as Clang builtin type, including event_t related Ope... | Guy Benyei |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-20 | Move operator precedence calculation to new header | Daniel Jasper |
2012-12-18 | Re-commit r170428 changes with Linux style file endings. | Guy Benyei |
2012-12-18 | Revert changes from r170428, as I accidentally changed the line endings of th... | Guy Benyei |
2012-12-18 | Add OpenCL images as clang builtin types. | Guy Benyei |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-10-04 | Fixed FunctionTypeLoc source range. | Abramo Bagnara |
2012-09-26 | Fix an edge case of mangling involving the combination of a lambda and typeid. | Eli Friedman |
2012-09-25 | Add the Microsoft __is_interface_class type trait. | John McCall |
2012-09-18 | If a comma operator is followed by a token which unambiguously indicates the | Richard Smith |
2012-09-11 | Remove unused macro definition | Douglas Gregor |
2012-08-30 | Extend the "__is_pod" hack, which demotes various type trait keywords | Douglas Gregor |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-07-30 | Improvements to vexing-parse warnings. Make the no-parameters case more | Richard Smith |
2012-06-30 | Add support for the C11 _Alignof keyword. | Jordan Rose |
2012-06-23 | Support L__FUNCTION__ in microsoft mode, PR11789 | Nico Weber |
2012-06-19 | Documentation cleanup: fixing file headers to use Doxygen \file markup while | James Dennett |
2012-06-17 | Documentation cleanup: | James Dennett |
2012-06-15 | Check the parameter lists and return type of both blocks and lambdas | Douglas Gregor |
2012-06-15 | Documentation cleanup: escape Objective-C @ symbols in Doxygen comments. | James Dennett |
2012-06-06 | Whenever we have a BalancedDelimiterTracker, we have a 'nested' scope | Douglas Gregor |
2012-05-02 | Revert most of r154844, which was disabled in r155975. Keep around the | Richard Smith |
2012-04-16 | Implement the last part of C++ [class.mem]p2, delaying the parsing of | Douglas Gregor |
2012-04-14 | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith |
2012-04-10 | Disambiguation of '[[': | Richard Smith |
2012-04-04 | For PR11916: Add support for g++'s __int128 keyword. Unlike __int128_t, this is | Richard Smith |
2012-04-04 | Enter an expression evaluation context when parsing | John McCall |
2012-03-11 | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie |
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-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-01 | Avoid examining the AST from the parser, and simplify somewhat. | Richard Smith |
2012-03-01 | Reject 'a = {0} = {0}' rather than parsing it as '(a = {0}) = {0}'. Also | Richard Smith |
2012-02-29 | Make the odr-use logic work correctly for constant-expressions. PR12006. | Eli Friedman |
2012-02-26 | Half of PR12088: parse braced-init-lists on the RHS of assignment operators. | Richard Smith |
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 | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor |
2012-02-22 | Fix typo correction of template arguments to once again allow type names. | Kaelyn Uhrain |