Age | Commit message (Expand) | Author |
2011-04-28 | SEH was crashing under -fms-extensions. | Francois Pichet |
2011-04-28 | Parsing/AST support for Structured Exception Handling | John Wiegley |
2011-04-27 | Introduce a new parser annotation token for primary expressions. When | Douglas Gregor |
2011-04-27 | Clean out some cruft I introduced when adding Sema::ClassifyName() | Douglas Gregor |
2011-04-27 | Simplify the parser's handling of Sema::ClassifyName() for types, by | Douglas Gregor |
2011-04-27 | If a null statement was preceded by an empty macro keep its instantiation sou... | Argyrios Kyrtzidis |
2011-04-27 | Extend Sema::ClassifyName() to support C++, ironing out a few issues | Douglas Gregor |
2011-04-25 | When Sema::ClassifyName() finds an invalid ivar reference, return an | Douglas Gregor |
2011-04-24 | Implement a new identifier-classification scheme where Sema | Douglas Gregor |
2011-04-21 | Fix gcc warning. Add parens to this assert, incidentally reassociating it, bu... | Richard Smith |
2011-04-21 | Add a fixit suggest for missing case keywords inside a switch scope. For ins... | Richard Trieu |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-03-24 | Insomniac refactoring: change how the parser allocates attributes so that | John McCall |
2011-03-16 | Make sure that we always pop a function's scope *before* we call | Douglas Gregor |
2011-03-11 | Implement a hack intended to allow Clang to parse libstdc++ 4.5's | Douglas Gregor |
2011-03-05 | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara |
2011-02-18 | implement basic support for __label__. I wouldn't be shocked if there are | Chris Lattner |
2011-02-18 | Switch labels over to using normal name lookup, instead of their | Chris Lattner |
2011-02-17 | Improve parser recovery in "for" statements, from Richard Smith! | Douglas Gregor |
2011-01-22 | Improve our parse recovery on 'case blah;' and 'default;'. | John McCall |
2011-01-18 | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin |
2011-01-17 | Convert "#pragma unused(...)" into tokens for the parser. | Argyrios Kyrtzidis |
2011-01-04 | Rename MaybeSkipFunctionBodyForCodeCompletion -> trySkippingFunctionBodyForCo... | Argyrios Kyrtzidis |
2011-01-03 | When in code-completion, skip obj-c method bodies for speed up. | Argyrios Kyrtzidis |
2011-01-03 | Speed up code-completion by skipping function bodies. | Argyrios Kyrtzidis |
2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall |
2010-12-23 | Improve the diagnostic and recovery for missing colons after 'case' | Douglas Gregor |
2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall |
2010-12-02 | Fixed source range for MS asm statement. | Abramo Bagnara |
2010-11-20 | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis |
2010-11-19 | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis |
2010-11-10 | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek |
2010-11-02 | Properly handle temporaries that are created in a AsmStmt. | Argyrios Kyrtzidis |
2010-11-01 | Clean up temporaries created by an asm statement. Fixes rdar://8540491 | Argyrios Kyrtzidis |
2010-09-28 | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian |
2010-09-28 | Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848... | Argyrios Kyrtzidis |
2010-09-15 | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor |
2010-09-07 | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor |
2010-09-01 | when emitting an error about a missing } in a compound statement, emit | Chris Lattner |
2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Sean Hunt |
2010-08-29 | Implement C++0x user-defined string literals. | Sean Hunt |
2010-08-26 | One who seeks knowledge learns something new every day. | John McCall |
2010-08-24 | OwningExprResult -> ExprResult. This patch brought to you by | John McCall |
2010-08-23 | Kill off ExprArg (now just Expr*) and StmtArg (now just Stmt*). | John McCall |
2010-08-23 | Introduce a code-completion hook for the Objective-C collection | Douglas Gregor |
2010-08-23 | Sundry incremental steps towards killing off Action. | John McCall |
2010-08-21 | DeclPtrTy -> Decl * | John McCall |
2010-08-20 | Another step in the process of making the parser depend on Sema: | John McCall |
2010-08-17 | Add a slightly better hack for microsoft style inline asm, | Chris Lattner |
2010-08-11 | Once code completion has completed, pass a "completion context" on to | Douglas Gregor |