| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | If the range in a for range statement doesn't have a viable begin/end function, | Richard Smith | 2012-09-20 | 1 | -1/+2 |
* | Revert r163083 per chandlerc's request. | Joao Matos | 2012-09-04 | 1 | -16/+1 |
* | Implemented parsing and AST support for the MS __leave exception statement. A... | Joao Matos | 2012-09-02 | 1 | -1/+16 |
* | [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. | Chad Rosier | 2012-08-25 | 1 | -12/+10 |
* | [ms-inline asm] Change the -fenable-experimental-ms-inline-asm option from a | Chad Rosier | 2012-08-24 | 1 | -0/+18 |
* | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer | 2012-08-23 | 1 | -2/+2 |
* | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer | 2012-08-23 | 1 | -6/+6 |
* | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer | 2012-08-23 | 1 | -19/+19 |
* | Better diagnostics for range-based for loops with bad range types. | Sam Panzer | 2012-08-21 | 1 | -1/+1 |
* | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith | 2012-08-18 | 1 | -81/+24 |
* | Removed unused LParenLoc parameter to ActOnCXXForRangeStmt | Sam Panzer | 2012-08-16 | 1 | -3/+2 |
* | [ms-inline asm] MSVC parses multiple __asm statements on a single line as one | Chad Rosier | 2012-08-15 | 1 | -5/+0 |
* | [ms-inline asm] Add the left brace source location and improve the pretty | Chad Rosier | 2012-08-15 | 1 | -1/+2 |
* | [ms-inline asm] Remove the last bits of LineEnds. | Chad Rosier | 2012-08-14 | 1 | -5/+1 |
* | [ms-inline asm] Add a helpful assert. | Chad Rosier | 2012-08-14 | 1 | -91/+85 |
* | [ms-inline asm] Refactor the logic to generate the AsmString into Sema. No | Chad Rosier | 2012-08-08 | 1 | -59/+2 |
* | [ms-inline asm] Stmt destructors are never called, so allocate the AsmToks using | Chad Rosier | 2012-08-07 | 1 | -1/+2 |
* | [ms-inline asm] Pass Tokens to Sema and store them in the AST. No functional | Chad Rosier | 2012-08-06 | 1 | -5/+2 |
* | 80-column violations and whitespace. | Chad Rosier | 2012-07-10 | 1 | -13/+15 |
* | objective-c: Refactor parse/sema portion of | Fariborz Jahanian | 2012-07-03 | 1 | -8/+8 |
* | Clean up a large number of C++11 attribute parse issues, including parsing | Alexis Hunt | 2012-06-23 | 1 | -0/+11 |
* | [ms-inline-asm] The __asm keyword is a statement separator, so multiple asm | Chad Rosier | 2012-06-12 | 1 | -0/+5 |
* | [ms-inline-asm] Cleanup MS style inline assembly parsing. | Chad Rosier | 2012-06-12 | 1 | -9/+46 |
* | Etch out the code path for MS-style inline assembly. | Chad Rosier | 2012-06-11 | 1 | -33/+52 |
* | Include the correct conversion context locations for condition expressions. | David Blaikie | 2012-05-16 | 1 | -3/+3 |
* | improve error recovery for extra ')'s after a if/switch/while condition. Bef... | Chris Lattner | 2012-04-28 | 1 | -0/+10 |
* | switch some uses of ExpectAndConsume(tok::semi to use ExpectAndConsumeSemi. ... | Chris Lattner | 2012-04-28 | 1 | -1/+1 |
* | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith | 2012-04-14 | 1 | -97/+84 |
* | Added a flag to the parser to skip method bodies. | Erik Verbruggen | 2012-04-12 | 1 | -14/+10 |
* | Disambiguation of '[[': | Richard Smith | 2012-04-10 | 1 | -2/+2 |
* | [parser] If there are unmatched braces in a function definition, try to | Argyrios Kyrtzidis | 2012-03-24 | 1 | -5/+8 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -19/+19 |
* | User-defined literals: reject string and character UDLs in all places where the | Richard Smith | 2012-03-06 | 1 | -4/+2 |
* | Handle "#pragma GCC visibility" in a few more places. Switch over "#pragma p... | Eli Friedman | 2012-02-23 | 1 | -0/+8 |
* | Fix parsing and processing initializer lists in return statements and as dire... | Sebastian Redl | 2012-02-22 | 1 | -3/+0 |
* | Don't assume that a valid expression for the first part of a for-statement | Richard Smith | 2012-02-21 | 1 | -2/+1 |
* | Reject continue/break statements within members of local functions nested within | Richard Smith | 2012-02-17 | 1 | -7/+14 |
* | Generalize -Wempty-body: warn when statement body is empty (closes: PR11329) | Dmitri Gribenko | 2012-02-14 | 1 | -5/+15 |
* | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -1/+1 |
* | 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 |