| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -1/+2 |
* | One who seeks knowledge learns something new every day. | John McCall | 2010-08-26 | 1 | -9/+8 |
* | OwningExprResult -> ExprResult. This patch brought to you by | John McCall | 2010-08-24 | 1 | -61/+61 |
* | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall | 2010-08-23 | 1 | -37/+37 |
* | Introduce a code-completion hook for the Objective-C collection | Douglas Gregor | 2010-08-23 | 1 | -0/+10 |
* | Sundry incremental steps towards killing off Action. | John McCall | 2010-08-23 | 1 | -16/+16 |
* | DeclPtrTy -> Decl * | John McCall | 2010-08-21 | 1 | -13/+13 |
* | Another step in the process of making the parser depend on Sema: | John McCall | 2010-08-20 | 1 | -2/+2 |
* | Add a slightly better hack for microsoft style inline asm, | Chris Lattner | 2010-08-17 | 1 | -2/+2 |
* | Once code completion has completed, pass a "completion context" on to | Douglas Gregor | 2010-08-11 | 1 | -3/+3 |
* | Remove ElseScope which is also dead code now. | Nick Lewycky | 2010-08-06 | 1 | -6/+0 |
* | Fix PR7673 by allowing an empty clobbers section in an ASM statement. | Chandler Carruth | 2010-07-22 | 1 | -8/+10 |
* | Move the "current scope" state from the Parser into Action. This | Douglas Gregor | 2010-07-02 | 1 | -13/+13 |
* | Make sure parens/braces/brackets are correctly balanced. | Argyrios Kyrtzidis | 2010-06-17 | 1 | -0/+2 |
* | Teach code completion to adjust its completion priorities based on the | Douglas Gregor | 2010-05-30 | 1 | -0/+7 |
* | Make -code-completion-patterns only cover multi-line code | Douglas Gregor | 2010-05-28 | 1 | -1/+1 |
* | Improve code completion in failure cases in two ways: | Douglas Gregor | 2010-05-25 | 1 | -2/+2 |
* | Improve parser recovery when a switch condition is invalid; fixes | Douglas Gregor | 2010-05-20 | 1 | -3/+4 |
* | Fixed DISABLE_SMART_POINTERS breakage | Douglas Gregor | 2010-05-06 | 1 | -1/+3 |
* | Rework our handling of temporary objects within the conditions of | Douglas Gregor | 2010-05-06 | 1 | -32/+55 |
* | change Scope::WithinElse to be a normal scope flag, widen the | Chris Lattner | 2010-04-12 | 1 | -5/+8 |
* | fix PR6782, an accept invalid. We weren't emitting the diagnostic | Chris Lattner | 2010-04-05 | 1 | -1/+1 |
* | Don't skip past the '}' if an expression has error and is not followed by ';'. | Argyrios Kyrtzidis | 2010-03-31 | 1 | -3/+5 |
* | Clean up ownership of 'AttributeList' objects in Parser. Apparently | Ted Kremenek | 2010-02-11 | 1 | -15/+44 |
* | Use IdentifierInfo * instead of std::string for the AsmStmt names. | Anders Carlsson | 2010-01-30 | 1 | -8/+7 |
* | fix PR6034, a crash on invalid where the switch stack would get | Chris Lattner | 2010-01-24 | 1 | -8/+8 |
* | Improve code completion by introducing patterns for the various C and | Douglas Gregor | 2010-01-10 | 1 | -2/+4 |
* | Remember if the AsmStmt came from Microsoft-style inline assembly code. | Mike Stump | 2010-01-04 | 1 | -1/+1 |
* | fix PR5500: clang fails to parse inline asm with :: in C++ mode | Chris Lattner | 2009-12-20 | 1 | -7/+22 |
* | refactor asm stmt parsing to avoid nesting as much, and | Chris Lattner | 2009-12-20 | 1 | -39/+38 |
* | Check in a rudimentary FullExpr class that isn't used anywhere yet. Rename Ac... | Anders Carlsson | 2009-12-16 | 1 | -8/+8 |
* | Implement just a bit more of inline assembly. | Mike Stump | 2009-12-11 | 1 | -1/+14 |
* | fix PR5740: a colon is sacred when parsing case statement expressions! | Chris Lattner | 2009-12-10 | 1 | -0/+7 |
* | rename ExtensionRAIIObject.h -> RAIIObjectsForParser.h | Chris Lattner | 2009-12-10 | 1 | -1/+1 |
* | When the condition of a switch() statement is semantically invalid, | Douglas Gregor | 2009-11-25 | 1 | -3/+1 |
* | Eliminate CXXConditionDeclExpr with extreme prejudice. | Douglas Gregor | 2009-11-25 | 1 | -28/+38 |
* | "Do" loops cannot have condition variables, so don't parse them. | Douglas Gregor | 2009-11-24 | 1 | -4/+3 |
* | Added rudimentary C++0x attribute support. | Alexis Hunt | 2009-11-21 | 1 | -37/+76 |
* | Don't issue spurious diagnostic with Obj-C fast enumeration. | Fariborz Jahanian | 2009-11-19 | 1 | -0/+1 |
* | Reorganize the parsing of decl groups / function definitions so that | John McCall | 2009-11-03 | 1 | -2/+1 |
* | PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients | Daniel Dunbar | 2009-10-18 | 1 | -1/+1 |
* | Move misc clients to IdentifierInfo StringRef API. | Daniel Dunbar | 2009-10-18 | 1 | -1/+3 |
* | Code completion for ordinary names when we're starting a declaration, express... | Douglas Gregor | 2009-09-21 | 1 | -0/+10 |
* | Code completion for "case" statements within a switch on an expression | Douglas Gregor | 2009-09-21 | 1 | -0/+5 |
* | Remove tabs, and whitespace cleanups. | Mike Stump | 2009-09-09 | 1 | -47/+47 |
* | Change ActOnReturnStmt to not take a FullExprArg. Instead, Sema will wrap the... | Anders Carlsson | 2009-08-18 | 1 | -1/+1 |
* | change ParseStatementOrDeclaration to emit the 'missing ;' with | Chris Lattner | 2009-06-14 | 1 | -1/+5 |
* | improve localizability by not passing english phrases into | Chris Lattner | 2009-06-14 | 1 | -7/+7 |
* | add the location of the ')' in a do/while statement to DoStmt. | Chris Lattner | 2009-06-12 | 1 | -4/+10 |
* | Make sure to call FullExpr before parsing anything else. | Anders Carlsson | 2009-06-04 | 1 | -2/+6 |