Age | Commit message (Expand) | Author |
2013-05-03 | Move parsing of identifiers in MS-style inline assembly into | John McCall |
2013-04-16 | Parser support for #pragma clang __debug captured | Tareq A. Siraj |
2013-03-28 | Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar... | Richard Smith |
2013-03-22 | OpenMP threadprivate directive parsing and semantic analysis | Alexey Bataev |
2013-03-22 | Fix a crash-on-valid where a block capture copy expression was | John McCall |
2013-02-22 | [libclang] Fix a crash with invalid code, while skip function bodies is enabled. | Argyrios Kyrtzidis |
2013-02-20 | Process and handle attributes on conditions and for loop variables. Process and | Richard Smith |
2013-02-15 | When a statement is dropped from the AST because it was invalid, make sure | Argyrios Kyrtzidis |
2013-01-29 | Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. | Richard Smith |
2013-01-22 | [ms-inline asm] Remove the -fenable-experimental-ms-inline-asm flag. MS-style | Chad Rosier |
2013-01-22 | [ms-inline asm] Remove a warning about ms-style inline assembly not being | Chad Rosier |
2013-01-14 | Refactor to call ActOnFinishFullExpr on every full expression. Teach | Richard Smith |
2013-01-02 | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith |
2013-01-02 | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith |
2012-12-30 | Simplify. No functionality change. | Nico Weber |
2012-12-06 | Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body | Argyrios Kyrtzidis |
2012-12-05 | [driver, ms-inline asm] MS-Style inline assembly is controlled by the | Chad Rosier |
2012-12-04 | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth |
2012-11-19 | PR14381: Never skip constexpr function bodies when code-completing. We may need | Richard Smith |
2012-11-13 | Simplify function try/catch scope handling. | David Blaikie |
2012-11-12 | Fix more try scoping bugs introduced by r167650. | David Blaikie |
2012-11-10 | PR14296: function parameter name collisions in function try/catch | David Blaikie |
2012-11-03 | Support interleaving of other pragmas with FP_CONTRACT at the beginning of a | Lang Hames |
2012-10-31 | If skipping bodies is enabled outside code-completion, just skip the body dir... | Argyrios Kyrtzidis |
2012-10-27 | Removed an extra blank line. | Mahesha S |
2012-10-21 | When used in a compound expression FP_CONTRACT should proceed all explicit | Lang Hames |
2012-10-09 | People put pragmas in crazy places; add more handling. PR14046. | Eli Friedman |
2012-10-08 | Make sure we allow "#pragma options align=mac68k" in function-local contexts.... | Eli Friedman |
2012-10-04 | Permanently end the whole "pragma got handled by the parser too early" | Eli Friedman |
2012-10-02 | Add FP_CONTRACT support for clang. | Lang Hames |
2012-09-20 | If the range in a for range statement doesn't have a viable begin/end function, | Richard Smith |
2012-09-04 | Revert r163083 per chandlerc's request. | Joao Matos |
2012-09-02 | Implemented parsing and AST support for the MS __leave exception statement. A... | Joao Matos |
2012-08-25 | [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. | Chad Rosier |
2012-08-24 | [ms-inline asm] Change the -fenable-experimental-ms-inline-asm option from a | Chad Rosier |
2012-08-23 | Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl... | Benjamin Kramer |
2012-08-23 | Remove ASTOwningVector, it doesn't own anything and provides no value over Sm... | Benjamin Kramer |
2012-08-23 | Rip out remnants of move semantic emulation and smart pointers in Sema. | Benjamin Kramer |
2012-08-21 | Better diagnostics for range-based for loops with bad range types. | Sam Panzer |
2012-08-18 | PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers and | Richard Smith |
2012-08-16 | Removed unused LParenLoc parameter to ActOnCXXForRangeStmt | Sam Panzer |
2012-08-15 | [ms-inline asm] MSVC parses multiple __asm statements on a single line as one | Chad Rosier |
2012-08-15 | [ms-inline asm] Add the left brace source location and improve the pretty | Chad Rosier |
2012-08-14 | [ms-inline asm] Remove the last bits of LineEnds. | Chad Rosier |
2012-08-14 | [ms-inline asm] Add a helpful assert. | Chad Rosier |
2012-08-08 | [ms-inline asm] Refactor the logic to generate the AsmString into Sema. No | Chad Rosier |
2012-08-07 | [ms-inline asm] Stmt destructors are never called, so allocate the AsmToks using | Chad Rosier |
2012-08-06 | [ms-inline asm] Pass Tokens to Sema and store them in the AST. No functional | Chad Rosier |
2012-07-10 | 80-column violations and whitespace. | Chad Rosier |
2012-07-03 | objective-c: Refactor parse/sema portion of | Fariborz Jahanian |