| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove unreachable code in Clang. (replace with llvm_unreachable where approp... | David Blaikie | 2012-01-17 | 1 | -3/+0 |
| * | Add -Wdangling-else. | Nico Weber | 2011-12-22 | 1 | -13/+25 |
| * | PR11297: Provide a better diagnostic for code which contains a | Richard Smith | 2011-12-20 | 1 | -0/+8 |
| * | Fix tentative parsing so it knows how to handle an ambiguous for-range-declar... | Eli Friedman | 2011-12-20 | 1 | -1/+1 |
| * | Fix test regression introduced by r145656. When seeing a string literal that... | Ted Kremenek | 2011-12-02 | 1 | -1/+6 |
| * | Implement support for dependent Microsoft __if_exists/__if_not_exists | Douglas Gregor | 2011-10-25 | 1 | -1/+10 |
| * | Rework Microsoft __if_exists/__if_not_exists parsing and semantic | Douglas Gregor | 2011-10-24 | 1 | -12/+31 |
| * | Treat the Microsoft/Borland keyword "__except" as a context-sensitive | Douglas Gregor | 2011-10-21 | 1 | -3/+7 |
| * | Implement -Wc++98-compat warnings for the parser. | Richard Smith | 2011-10-15 | 1 | -4/+6 |
| * | Introduce BalancedDelimiterTracker, to better track open/close | Douglas Gregor | 2011-10-12 | 1 | -34/+48 |
| * | Fix "Uninitialized" warnings. | NAKAMURA Takumi | 2011-10-08 | 1 | -2/+2 |
| * | Whitespace | NAKAMURA Takumi | 2011-10-08 | 1 | -60/+60 |
| * | Some fixes for MS-style asm parsing: specifically, add some error checking, a... | Eli Friedman | 2011-09-30 | 1 | -26/+105 |
| * | Changes to the name lookup have caused a regression in the digraph fix-it hint. | Richard Trieu | 2011-09-19 | 1 | -0/+5 |
| * | Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear t... | Francois Pichet | 2011-09-17 | 1 | -2/+2 |
| * | Change references to StmtTy to Stmt and removed typedefs of StmtTy. Also rem... | Richard Trieu | 2011-09-09 | 1 | -1/+1 |
| * | Change all references of type ExprTy to Expr and get rid of the typedefs. | Richard Trieu | 2011-09-09 | 1 | -2/+2 |
| * | When parsing a function-try-block that does not have a | Douglas Gregor | 2011-09-07 | 1 | -1/+3 |
| * | PR10458: Finesse behaviour of C++0x features when in pre-0x mode. Accept for-... | Richard Smith | 2011-09-04 | 1 | -0/+3 |
| * | Support code-completion for C++ inline methods and ObjC buffering methods. | Argyrios Kyrtzidis | 2011-09-04 | 1 | -9/+13 |
| * | Don't try keeping a 'LeadingEmptyMacroLoc' in NullStmt. This fails | Argyrios Kyrtzidis | 2011-09-01 | 1 | -4/+2 |
| * | Add code completion to produce "else" blocks after an "if" | Douglas Gregor | 2011-07-30 | 1 | -0/+3 |
| * | Clean up the analysis of the collection operand to ObjC | John McCall | 2011-07-27 | 1 | -3/+10 |
| * | Rename getInstantiationLineNumber to getExpansionLineNumber in both | Chandler Carruth | 2011-07-25 | 1 | -2/+2 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -5/+5 |
| * | Move the rest of the preprocessor terminology from 'instantiate' and | Chandler Carruth | 2011-07-14 | 1 | -1/+1 |
| * | Properly implement the scope restriction on the NRVO for | Douglas Gregor | 2011-07-06 | 1 | -3/+9 |
| * | Remove the Fix-it for missing statement in switches | David Majnemer | 2011-06-14 | 1 | -6/+4 |
| * | Improve the diagnostics generated for switch statements missing expressions | David Majnemer | 2011-06-13 | 1 | -4/+7 |
| * | Add support for _if_exists and __if_not_exists at namespace/global scope. | Francois Pichet | 2011-05-07 | 1 | -37/+4 |
| * | Add support for Microsoft __if_exists and __if_not_exists construct inside fu... | Francois Pichet | 2011-05-06 | 1 | -0/+70 |
| * | SEH was crashing under -fms-extensions. | Francois Pichet | 2011-04-28 | 1 | -6/+11 |
| * | Parsing/AST support for Structured Exception Handling | John Wiegley | 2011-04-28 | 1 | -15/+144 |
| * | Introduce a new parser annotation token for primary expressions. When | Douglas Gregor | 2011-04-27 | 1 | -7/+8 |
| * | Clean out some cruft I introduced when adding Sema::ClassifyName() | Douglas Gregor | 2011-04-27 | 1 | -4/+0 |
| * | Simplify the parser's handling of Sema::ClassifyName() for types, by | Douglas Gregor | 2011-04-27 | 1 | -52/+1 |
| * | If a null statement was preceded by an empty macro keep its instantiation sou... | Argyrios Kyrtzidis | 2011-04-27 | 1 | -2/+4 |
| * | Extend Sema::ClassifyName() to support C++, ironing out a few issues | Douglas Gregor | 2011-04-27 | 1 | -5/+24 |
| * | When Sema::ClassifyName() finds an invalid ivar reference, return an | Douglas Gregor | 2011-04-25 | 1 | -1/+0 |
| * | Implement a new identifier-classification scheme where Sema | Douglas Gregor | 2011-04-24 | 1 | -34/+167 |
| * | Fix gcc warning. Add parens to this assert, incidentally reassociating it, bu... | Richard Smith | 2011-04-21 | 1 | -1/+1 |
| * | Add a fixit suggest for missing case keywords inside a switch scope. For ins... | Richard Trieu | 2011-04-21 | 1 | -5/+23 |
| * | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -12/+42 |
| * | Insomniac refactoring: change how the parser allocates attributes so that | John McCall | 2011-03-24 | 1 | -8/+8 |
| * | Make sure that we always pop a function's scope *before* we call | Douglas Gregor | 2011-03-16 | 1 | -7/+15 |
| * | Implement a hack intended to allow Clang to parse libstdc++ 4.5's | Douglas Gregor | 2011-03-11 | 1 | -1/+10 |
| * | Fixed LabelDecl source range and cleaned creation code. | Abramo Bagnara | 2011-03-05 | 1 | -1/+1 |
| * | implement basic support for __label__. I wouldn't be shocked if there are | Chris Lattner | 2011-02-18 | 1 | -4/+33 |
| * | Switch labels over to using normal name lookup, instead of their | Chris Lattner | 2011-02-18 | 1 | -6/+11 |
| * | Improve parser recovery in "for" statements, from Richard Smith! | Douglas Gregor | 2011-02-17 | 1 | -7/+18 |