| Age | Commit message (Expand) | Author | Files | Lines |
| 2011-07-25 | Rename getInstantiationLineNumber to getExpansionLineNumber in both | Chandler Carruth | 1 | -2/+2 |
| 2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 1 | -5/+5 |
| 2011-07-14 | Move the rest of the preprocessor terminology from 'instantiate' and | Chandler Carruth | 1 | -1/+1 |
| 2011-07-06 | Properly implement the scope restriction on the NRVO for | Douglas Gregor | 1 | -3/+9 |
| 2011-06-14 | Remove the Fix-it for missing statement in switches | David Majnemer | 1 | -6/+4 |
| 2011-06-13 | Improve the diagnostics generated for switch statements missing expressions | David Majnemer | 1 | -4/+7 |
| 2011-05-07 | Add support for _if_exists and __if_not_exists at namespace/global scope. | Francois Pichet | 1 | -37/+4 |
| 2011-05-06 | Add support for Microsoft __if_exists and __if_not_exists construct inside fu... | Francois Pichet | 1 | -0/+70 |
| 2011-04-28 | SEH was crashing under -fms-extensions. | Francois Pichet | 1 | -6/+11 |
| 2011-04-28 | Parsing/AST support for Structured Exception Handling | John Wiegley | 1 | -15/+144 |
| 2011-04-27 | Introduce a new parser annotation token for primary expressions. When | Douglas Gregor | 1 | -7/+8 |
| 2011-04-27 | Clean out some cruft I introduced when adding Sema::ClassifyName() | Douglas Gregor | 1 | -4/+0 |
| 2011-04-27 | Simplify the parser's handling of Sema::ClassifyName() for types, by | Douglas Gregor | 1 | -52/+1 |
| 2011-04-27 | If a null statement was preceded by an empty macro keep its instantiation sou... | Argyrios Kyrtzidis | 1 | -2/+4 |
| 2011-04-27 | Extend Sema::ClassifyName() to support C++, ironing out a few issues | Douglas Gregor | 1 | -5/+24 |
| 2011-04-25 | When Sema::ClassifyName() finds an invalid ivar reference, return an | Douglas Gregor | 1 | -1/+0 |
| 2011-04-24 | Implement a new identifier-classification scheme where Sema | Douglas Gregor | 1 | -34/+167 |
| 2011-04-21 | Fix gcc warning. Add parens to this assert, incidentally reassociating it, bu... | Richard Smith | 1 | -1/+1 |
| 2011-04-21 | Add a fixit suggest for missing case keywords inside a switch scope. For ins... | Richard Trieu | 1 | -5/+23 |
| 2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 1 | -12/+42 |
| 2011-03-24 | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 1 | -8/+8 |
| 2011-03-16 | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 1 | -7/+15 |
| 2011-03-11 | Implement a hack intended to allow Clang to parse libstdc++ 4.5's | Douglas Gregor | 1 | -1/+10 |
| 2011-03-05 | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara | 1 | -1/+1 |
| 2011-02-18 | implement basic support for __label__. I wouldn't be shocked if there are | Chris Lattner | 1 | -4/+33 |
| 2011-02-18 | Switch labels over to using normal name lookup, instead of their | Chris Lattner | 1 | -6/+11 |
| 2011-02-17 | Improve parser recovery in "for" statements, from Richard Smith! | Douglas Gregor | 1 | -7/+18 |
| 2011-01-22 | Improve our parse recovery on 'case blah;' and 'default;'. | John McCall | 1 | -6/+18 |
| 2011-01-18 | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 1 | -4/+1 |
| 2011-01-17 | Convert "#pragma unused(...)" into tokens for the parser. | Argyrios Kyrtzidis | 1 | -0/+6 |
| 2011-01-04 | Rename MaybeSkipFunctionBodyForCodeCompletion -> trySkippingFunctionBodyForCo... | Argyrios Kyrtzidis | 1 | -8/+9 |
| 2011-01-03 | When in code-completion, skip obj-c method bodies for speed up. | Argyrios Kyrtzidis | 1 | -12/+25 |
| 2011-01-03 | Speed up code-completion by skipping function bodies. | Argyrios Kyrtzidis | 1 | -0/+13 |
| 2010-12-24 | Refactor how we collect attributes during parsing, and add slots for attributes | John McCall | 1 | -54/+47 |
| 2010-12-23 | Improve the diagnostic and recovery for missing colons after 'case' | Douglas Gregor | 1 | -12/+16 |
| 2010-12-04 | Although we currently have explicit lvalue-to-rvalue conversions, they're | John McCall | 1 | -3/+9 |
| 2010-12-02 | Fixed source range for MS asm statement. | Abramo Bagnara | 1 | -4/+7 |
| 2010-11-20 | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis | 1 | -15/+7 |
| 2010-11-19 | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis | 1 | -3/+13 |
| 2010-11-10 | Region-allocate all AttributeList objects from a factory object instead of ma... | Ted Kremenek | 1 | -34/+19 |
| 2010-11-02 | Properly handle temporaries that are created in a AsmStmt. | Argyrios Kyrtzidis | 1 | -1/+1 |
| 2010-11-01 | Clean up temporaries created by an asm statement. Fixes rdar://8540491 | Argyrios Kyrtzidis | 1 | -0/+1 |
| 2010-09-28 | vla expressions used in __typeof__ must be evaluated. | Fariborz Jahanian | 1 | -9/+10 |
| 2010-09-28 | Don't warn for an unused label if it has 'unused' attribute. Fixes rdar://848... | Argyrios Kyrtzidis | 1 | -2/+1 |
| 2010-09-15 | Implement bracket insertion for Objective-C instance message sends as | Douglas Gregor | 1 | -1/+2 |
| 2010-09-07 | Improve recovery when there is a stray ']' or ')' before the ';' at | Douglas Gregor | 1 | -2/+2 |
| 2010-09-01 | when emitting an error about a missing } in a compound statement, emit | Chris Lattner | 1 | -0/+1 |
| 2010-08-30 | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 1 | -2/+1 |
| 2010-08-29 | Implement C++0x user-defined string literals. | Alexis Hunt | 1 | -1/+2 |
| 2010-08-26 | One who seeks knowledge learns something new every day. | John McCall | 1 | -9/+8 |