| Commit message (Expand) | Author | Age | Files | Lines |
| * | When code-completing within a list of declaration specifiers, | Douglas Gregor | 2011-02-15 | 1 | -1/+3 |
| * | OpenCL: add support for __kernel, kernel keywords and EXTENSION, | Peter Collingbourne | 2011-02-14 | 1 | -0/+16 |
| * | Reject forbidden storage class specifiers in OpenCL. Patch by George Russell! | Peter Collingbourne | 2011-02-11 | 1 | -7/+7 |
| * | Implement the suggested resolution to core issue 547, extended to also | Douglas Gregor | 2011-01-31 | 1 | -2/+3 |
| * | Allow Microsoft attributes in a constructor's parameter list. | Francois Pichet | 2011-01-31 | 1 | -0/+4 |
| * | Improve the extension warning for the use of ref-qualifiers, to | Douglas Gregor | 2011-01-26 | 1 | -2/+2 |
| * | Rvalue references for *this: parse ref-qualifiers. | Douglas Gregor | 2011-01-26 | 1 | -2/+31 |
| * | Downgrade the error about rvalue references to an extension warning | Douglas Gregor | 2011-01-25 | 1 | -1/+1 |
| * | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 1 | -1/+0 |
| * | Fix an embarrassing think in the disambiguation logic for the ellipsis in a p... | Douglas Gregor | 2011-01-05 | 1 | -1/+0 |
| * | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 2010-12-24 | 1 | -169/+128 |
| * | Implement parsing of function parameter packs and non-type template | Douglas Gregor | 2010-12-23 | 1 | -1/+16 |
| * | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -2/+2 |
| * | Added struct/class syntactic info for c++0x scoped enum. | Abramo Bagnara | 2010-12-03 | 1 | -4/+7 |
| * | After parsing a ':' in an enum-specifier within class context, | Douglas Gregor | 2010-12-01 | 1 | -4/+50 |
| * | Remove the other FIXME I added. This is covered by the Index test and not tes... | Nico Weber | 2010-11-22 | 1 | -2/+0 |
| * | Try to get the bots green after r119966. | Nico Weber | 2010-11-22 | 1 | -2/+3 |
| * | Fix the source range of CXXNewExprs. Fixes http://llvm.org/pr8661. | Nico Weber | 2010-11-22 | 1 | -3/+6 |
| * | When parsing something that looks like an ill-formed | Douglas Gregor | 2010-11-19 | 1 | -5/+4 |
| * | Emit a specific diagnostic when typedefing C++ bool, mirroring gcc. | Argyrios Kyrtzidis | 2010-11-16 | 1 | -2/+10 |
| * | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek | 2010-11-10 | 1 | -48/+43 |
| * | Diagnose attempst to template using declarations and using directives. | John McCall | 2010-11-10 | 1 | -1/+2 |
| * | fix PR8380, a crash on invalid due to an illogical DeclSpec SourceRange being... | Chris Lattner | 2010-11-09 | 1 | -0/+1 |
| * | Parse attributes on enumerators and instantiate attributes on enum decls. | John McCall | 2010-10-22 | 1 | -1/+6 |
| * | Teach the C++ simple-type-specifier parser and tentative parses about | Douglas Gregor | 2010-10-21 | 1 | -58/+20 |
| * | Add parsing support for Microsoft attributes. MS attributes will just be skip... | Francois Pichet | 2010-10-11 | 1 | -0/+4 |
| * | Implement C++0x scoped enumerations, from Daniel Wallin! (and tweaked a | Douglas Gregor | 2010-10-08 | 1 | -1/+41 |
| * | When we encounter a '==' in a context expecting a '=', assume the user made a... | Argyrios Kyrtzidis | 2010-10-08 | 1 | -1/+2 |
| * | Implement the C++0x "trailing return type" feature, e.g., | Douglas Gregor | 2010-10-01 | 1 | -5/+22 |
| * | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian | 2010-09-28 | 1 | -4/+11 |
| * | Allow the use of C++0x deleted functions as an extension in C++98. | Anders Carlsson | 2010-09-24 | 1 | -1/+5 |
| * | Implement code completion for Objective-C class message sends that are | Douglas Gregor | 2010-09-16 | 1 | -2/+3 |
| * | Implement automatic bracket insertion for Objective-C class message | Douglas Gregor | 2010-09-16 | 1 | -1/+14 |
| * | When parsing default function arguments, do not mark any declarations | Douglas Gregor | 2010-09-11 | 1 | -0/+5 |
| * | Eliminate the comma locations from all of the Sema routines that deal | Douglas Gregor | 2010-09-09 | 1 | -1/+1 |
| * | Improve recovery when a comma is missing between enumerators in an | Douglas Gregor | 2010-09-07 | 1 | -0/+8 |
| * | Add symantic support for the Pascal calling convention via | Dawn Perchik | 2010-09-03 | 1 | -10/+47 |
| * | Enable inline namespaces in C++03 as an extension. | Sebastian Redl | 2010-08-31 | 1 | -2/+2 |
| * | Parser support for inline namespaces | Sebastian Redl | 2010-08-27 | 1 | -0/+11 |
| * | Suggest "const" and "volatile" code completions after a function | Douglas Gregor | 2010-08-27 | 1 | -0/+5 |
| * | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -16/+16 |
| * | Reformatting. | John McCall | 2010-08-25 | 1 | -3/+3 |
| * | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -12/+12 |
| * | Abstract out passing around types and kill off ActionBase. | John McCall | 2010-08-24 | 1 | -30/+32 |
| * | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -2/+2 |
| * | Introduce a new code-completion point when we're parsing a | Douglas Gregor | 2010-08-23 | 1 | -15/+34 |
| * | When complaining about a duplicate declspec, provide a Fix-It that | Douglas Gregor | 2010-08-23 | 1 | -1/+6 |
| * | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -5/+5 |
| * | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -46/+45 |
| * | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |