| Commit message (Expand) | Author | Age | Files | Lines |
| * | Convert terminology in the Lexer from 'instantiate' and variants to | Chandler Carruth | 2011-07-14 | 1 | -1/+1 |
| * | Add 'mutable' to the function declarator chunk, to be used when | Douglas Gregor | 2011-07-13 | 1 | -0/+1 |
| * | Remove a no-op break after a return, and correct one of the most | Chandler Carruth | 2011-07-08 | 1 | -2/+2 |
| * | Minor style cleanup. | Chandler Carruth | 2011-07-08 | 1 | -6/+9 |
| * | Move SourceManager::isAt[Start/End]OfMacroInstantiation functions to the Lexe... | Argyrios Kyrtzidis | 2011-07-07 | 1 | -2/+1 |
| * | Make the Preprocessor more memory efficient and improve macro instantiation d... | Argyrios Kyrtzidis | 2011-07-07 | 1 | -1/+2 |
| * | [ARC] When casting from a pointer to an objective-c object with known ownersh... | Argyrios Kyrtzidis | 2011-07-01 | 1 | -30/+47 |
| * | -Remove Sema::ActOnCastOfParenListExpr and move most of its functionality to | Argyrios Kyrtzidis | 2011-07-01 | 1 | -1/+1 |
| * | For code such as: | Richard Trieu | 2011-07-01 | 1 | -1/+0 |
| * | Allow the fixit for missing ':' in the ?: ternary operator if it is pointing | Argyrios Kyrtzidis | 2011-06-24 | 1 | -2/+3 |
| * | Introduce DelayedCleanupPool useful for simplifying clean-up of certain resou... | Argyrios Kyrtzidis | 2011-06-22 | 1 | -4/+2 |
| * | Only accept __bridge_retain in system headers, as Doug suggested. | John McCall | 2011-06-17 | 1 | -5/+17 |
| * | As a hopefully temporary workaround for a header mistake, treat | John McCall | 2011-06-17 | 1 | -1/+2 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -2/+30 |
| * | Correct the spelling of instantiation | David Majnemer | 2011-06-13 | 1 | -1/+1 |
| * | Parse C++0x generalized initializers. | Sebastian Redl | 2011-06-05 | 1 | -6/+32 |
| * | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -0/+30 |
| * | Implement the __is_trivially_copyable type trait | Alexis Hunt | 2011-05-13 | 1 | -0/+4 |
| * | Upgrade Microsoft's __int8, __int16, __int32 and __int64 types from builtin d... | Francois Pichet | 2011-04-28 | 1 | -0/+1 |
| * | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+9 |
| * | t/clang/type-traits | John Wiegley | 2011-04-27 | 1 | -0/+55 |
| * | Introduce a new parser annotation token for primary expressions. When | Douglas Gregor | 2011-04-27 | 1 | -20/+12 |
| * | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+8 |
| * | Implement a new identifier-classification scheme where Sema | Douglas Gregor | 2011-04-24 | 1 | -8/+20 |
| * | Add support for '__is_literal_type' spelling of the existing | Chandler Carruth | 2011-04-24 | 1 | -0/+1 |
| * | Implement basic __is_trivial type-trait support, enough to close PR9472. | Chandler Carruth | 2011-04-23 | 1 | -0/+2 |
| * | Sort the type traits in a few places where they weren't previously | Chandler Carruth | 2011-04-23 | 1 | -5/+5 |
| * | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -0/+98 |
| * | Diagnose a missing ')' on what looks like a statement expression. | John McCall | 2011-04-06 | 1 | -1/+6 |
| * | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 2011-03-24 | 1 | -10/+10 |
| * | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 2011-03-16 | 1 | -0/+1 |
| * | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -28/+41 |
| * | Propagate new-style exception spec information to Declarator. | Sebastian Redl | 2011-03-05 | 1 | -2/+3 |
| * | Push nested-name-specifier source-location information into dependent | Douglas Gregor | 2011-03-02 | 1 | -1/+1 |
| * | fix rdar://9024687, a crash on invalid that we used to silently ignore. | Chris Lattner | 2011-02-18 | 1 | -0/+3 |
| * | Switch labels over to using normal name lookup, instead of their | Chris Lattner | 2011-02-18 | 1 | -2/+3 |
| * | When Parser::ParseExpressionList isn't given a completer, fall back to | Douglas Gregor | 2011-02-17 | 1 | -0/+2 |
| * | When we encounter an Objective-C class name in an expression, followed | Douglas Gregor | 2011-02-15 | 1 | -5/+10 |
| * | Parse: add support for parsing CUDA kernel calls | Peter Collingbourne | 2011-02-09 | 1 | -10/+55 |
| * | Implement the Microsoft __is_convertible_to type trait, modeling the | Douglas Gregor | 2011-01-27 | 1 | -2/+4 |
| * | Rvalue references for *this: parse ref-qualifiers. | Douglas Gregor | 2011-01-26 | 1 | -0/+1 |
| * | Add support for explicit constructor calls in Microsoft mode. | Francois Pichet | 2011-01-18 | 1 | -1/+3 |
| * | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 1 | -2/+1 |
| * | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 1 | -0/+42 |
| * | Implement support for pack expansions in initializer lists and | Douglas Gregor | 2011-01-03 | 1 | -6/+8 |
| * | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 2010-12-24 | 1 | -19/+8 |
| * | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -20/+1 |
| * | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -0/+3 |
| * | Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. | Nico Weber | 2010-11-22 | 1 | -2/+2 |
| * | Provide code completion for types after the '^' that starts a block | Douglas Gregor | 2010-10-18 | 1 | -0/+5 |