| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Avoid the hard-coded limit on the number of typo corrections attempted. | Kaelyn Uhrain | 2013-09-27 | 1 | -15/+29 |
* | Add some missing ProhibitAttributes calls to some declaration-like #pragmas. | Richard Smith | 2013-09-16 | 1 | -0/+2 |
* | Fix the MCTargetAsmParser API change. | Joey Gouly | 2013-09-12 | 1 | -3/+3 |
* | const'ify Sema::ActOnCXXTryBlock by | Robert Wilhelm | 2013-08-22 | 1 | -1/+1 |
* | Remove Extension warning for GNU local labels. | Eli Friedman | 2013-08-20 | 1 | -1/+0 |
* | const'ify Sema::ActOnCompoundStmt by | Robert Wilhelm | 2013-08-19 | 1 | -4/+2 |
* | OpenMP: basic support for #pragma omp parallel | Alexey Bataev | 2013-07-19 | 1 | -3/+2 |
* | ArrayRef'ize Sema::FinalizeDeclaratorGroup, Sema::BuildDeclaratorGroup and | Rafael Espindola | 2013-07-09 | 1 | -2/+2 |
* | Update to pass in pointers intead of references. | Bill Wendling | 2013-06-18 | 1 | -1/+1 |
* | Update for LLVM interface change in r181680. | Rafael Espindola | 2013-05-13 | 1 | -1/+1 |
* | Move parsing of identifiers in MS-style inline assembly into | John McCall | 2013-05-03 | 1 | -2/+395 |
* | Parser support for #pragma clang __debug captured | Tareq A. Siraj | 2013-04-16 | 1 | -0/+3 |
* | Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar... | Richard Smith | 2013-03-28 | 1 | -0/+3 |
* | OpenMP threadprivate directive parsing and semantic analysis | Alexey Bataev | 2013-03-22 | 1 | -0/+5 |
* | Fix a crash-on-valid where a block capture copy expression was | John McCall | 2013-03-22 | 1 | -1/+1 |
* | [libclang] Fix a crash with invalid code, while skip function bodies is enabled. | Argyrios Kyrtzidis | 2013-02-22 | 1 | -1/+1 |
* | Process and handle attributes on conditions and for loop variables. Process and | Richard Smith | 2013-02-20 | 1 | -3/+0 |
* | When a statement is dropped from the AST because it was invalid, make sure | Argyrios Kyrtzidis | 2013-02-15 | 1 | -5/+0 |
* | Implement C++11 [dcl.align]p1 and C11 6.7.5/2 rules for alignas and _Alignas. | Richard Smith | 2013-01-29 | 1 | -7/+12 |
* | [ms-inline asm] Remove the -fenable-experimental-ms-inline-asm flag. MS-style | Chad Rosier | 2013-01-22 | 1 | -15/+0 |
* | [ms-inline asm] Remove a warning about ms-style inline assembly not being | Chad Rosier | 2013-01-22 | 1 | -3/+0 |
* | Refactor to call ActOnFinishFullExpr on every full expression. Teach | Richard Smith | 2013-01-14 | 1 | -4/+6 |
* | s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near... | Richard Smith | 2013-01-02 | 1 | -6/+6 |
* | s/CPlusPlus0x/CPlusPlus11/g | Richard Smith | 2013-01-02 | 1 | -3/+3 |
* | Simplify. No functionality change. | Nico Weber | 2012-12-30 | 1 | -7/+2 |
* | Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a body | Argyrios Kyrtzidis | 2012-12-06 | 1 | -2/+2 |
* | [driver, ms-inline asm] MS-Style inline assembly is controlled by the | Chad Rosier | 2012-12-05 | 1 | -1/+1 |
* | Sort all of Clang's files under 'lib', and fix up the broken headers | Chandler Carruth | 2012-12-04 | 1 | -3/+3 |
* | PR14381: Never skip constexpr function bodies when code-completing. We may need | Richard Smith | 2012-11-19 | 1 | -2/+4 |
* | Simplify function try/catch scope handling. | David Blaikie | 2012-11-13 | 1 | -3/+3 |
* | Fix more try scoping bugs introduced by r167650. | David Blaikie | 2012-11-12 | 1 | -1/+1 |
* | PR14296: function parameter name collisions in function try/catch | David Blaikie | 2012-11-10 | 1 | -6/+8 |
* | Support interleaving of other pragmas with FP_CONTRACT at the beginning of a | Lang Hames | 2012-11-03 | 1 | -4/+45 |
* | If skipping bodies is enabled outside code-completion, just skip the body dir... | Argyrios Kyrtzidis | 2012-10-31 | 1 | -1/+7 |
* | Removed an extra blank line. | Mahesha S | 2012-10-27 | 1 | -1/+0 |
* | When used in a compound expression FP_CONTRACT should proceed all explicit | Lang Hames | 2012-10-21 | 1 | -3/+8 |
* | People put pragmas in crazy places; add more handling. PR14046. | Eli Friedman | 2012-10-09 | 1 | -0/+20 |
* | Make sure we allow "#pragma options align=mac68k" in function-local contexts.... | Eli Friedman | 2012-10-08 | 1 | -0/+5 |
* | Permanently end the whole "pragma got handled by the parser too early" | Eli Friedman | 2012-10-04 | 1 | -0/+10 |
* | Add FP_CONTRACT support for clang. | Lang Hames | 2012-10-02 | 1 | -0/+5 |
* | 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 |