| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | When we have two identifiers in a row in Objective-C, make sure to | Douglas Gregor | 2010-09-28 | 1 | -1/+1 |
* | Continue parsing more postfix expressions, even after semantic | Douglas Gregor | 2010-09-18 | 1 | -29/+18 |
* | Improve recovery when the middle expression of a ternary operator is ill-formed | Douglas Gregor | 2010-09-17 | 1 | -2/+4 |
* | When we run into an error parsing or type-checking the left-hand side | Douglas Gregor | 2010-09-17 | 1 | -24/+16 |
* | rename variable, 'Type' seems to be present in | Gabor Greif | 2010-09-17 | 1 | -3/+3 |
* | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor | 2010-09-16 | 1 | -2/+56 |
* | Handle bracket insertion for Objective-C class messages in a very | Douglas Gregor | 2010-09-15 | 1 | -37/+49 |
* | Improve code completion for Objective-C message sends when the opening | Douglas Gregor | 2010-09-15 | 1 | -4/+15 |
* | Extend bracket insertion to message sends to "super", e.g., | Douglas Gregor | 2010-09-15 | 1 | -0/+12 |
* | Extend bracket insertion to handle nullary selectors, e.g. | Douglas Gregor | 2010-09-15 | 1 | -1/+1 |
* | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 2010-09-15 | 1 | -4/+29 |
* | Introduce a new code-completion context for a parenthesized | Douglas Gregor | 2010-09-14 | 1 | -0/+8 |
* | Eli helped me understand how evaluation contexts work. | Sebastian Redl | 2010-09-10 | 1 | -0/+4 |
* | Parse the noexcept operator and stub out sema. | Sebastian Redl | 2010-09-10 | 1 | -3/+17 |
* | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -2/+1 |
* | Microsoft's __uuidof operator implementation part 1. | Francois Pichet | 2010-09-08 | 1 | -0/+3 |
* | Implement __has_virtual_destructor. Patch by Steven Watanabe. | Sebastian Redl | 2010-09-02 | 1 | -1/+2 |
* | Implement the __has_nothrow trait family, by Steven Watanabe. | Sebastian Redl | 2010-08-31 | 1 | -3/+6 |
* | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 2010-08-30 | 1 | -2/+1 |
* | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -1/+2 |
* | Propagate whether an id-expression is the immediate argument of | John McCall | 2010-08-27 | 1 | -1/+5 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -11/+11 |
* | Preserve invalidity of typeof operands in C++. | John McCall | 2010-08-24 | 1 | -1/+2 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -44/+44 |
* | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -15/+15 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -68/+59 |
* | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -13/+14 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -3/+3 |
* | Once code completion has completed, pass a "completion context" on to | Douglas Gregor | 2010-08-11 | 1 | -2/+2 |
* | The pre-increment/pre-decrement grammar in C++ differs from that in C, | Douglas Gregor | 2010-08-06 | 1 | -4/+8 |
* | The grammar for GNU typeof in C requires an expression to be | Douglas Gregor | 2010-07-28 | 1 | -4/+7 |
* | tidy up comment. | Chris Lattner | 2010-07-19 | 1 | -2/+1 |