aboutsummaryrefslogtreecommitdiff
path: root/lib/Parse/ParseStmt.cpp
AgeCommit message (Expand)Author
2013-05-03Move parsing of identifiers in MS-style inline assembly intoJohn McCall
2013-04-16Parser support for #pragma clang __debug capturedTareq A. Siraj
2013-03-28Support C11 _Atomic type qualifier. This is more-or-less just syntactic sugar...Richard Smith
2013-03-22OpenMP threadprivate directive parsing and semantic analysisAlexey Bataev
2013-03-22Fix a crash-on-valid where a block capture copy expression wasJohn McCall
2013-02-22[libclang] Fix a crash with invalid code, while skip function bodies is enabled.Argyrios Kyrtzidis
2013-02-20Process and handle attributes on conditions and for loop variables. Process andRichard Smith
2013-02-15When a statement is dropped from the AST because it was invalid, make sureArgyrios Kyrtzidis
2013-01-29Implement 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-styleChad Rosier
2013-01-22[ms-inline asm] Remove a warning about ms-style inline assembly not beingChad Rosier
2013-01-14Refactor to call ActOnFinishFullExpr on every full expression. TeachRichard Smith
2013-01-02s/CXX0X/CXX11/g, except for __GNU_EXPERIMENTAL_CXX0X__, and update a few near...Richard Smith
2013-01-02s/CPlusPlus0x/CPlusPlus11/gRichard Smith
2012-12-30Simplify. No functionality change.Nico Weber
2012-12-06Add a bit on FunctionDecl/ObjCMethodDecl to indicate if there was a bodyArgyrios Kyrtzidis
2012-12-05[driver, ms-inline asm] MS-Style inline assembly is controlled by theChad Rosier
2012-12-04Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth
2012-11-19PR14381: Never skip constexpr function bodies when code-completing. We may needRichard Smith
2012-11-13Simplify function try/catch scope handling.David Blaikie
2012-11-12Fix more try scoping bugs introduced by r167650.David Blaikie
2012-11-10PR14296: function parameter name collisions in function try/catchDavid Blaikie
2012-11-03Support interleaving of other pragmas with FP_CONTRACT at the beginning of aLang Hames
2012-10-31If skipping bodies is enabled outside code-completion, just skip the body dir...Argyrios Kyrtzidis
2012-10-27Removed an extra blank line.Mahesha S
2012-10-21When used in a compound expression FP_CONTRACT should proceed all explicitLang Hames
2012-10-09People put pragmas in crazy places; add more handling. PR14046.Eli Friedman
2012-10-08Make sure we allow "#pragma options align=mac68k" in function-local contexts....Eli Friedman
2012-10-04Permanently end the whole "pragma got handled by the parser too early"Eli Friedman
2012-10-02Add FP_CONTRACT support for clang.Lang Hames
2012-09-20If the range in a for range statement doesn't have a viable begin/end function,Richard Smith
2012-09-04Revert r163083 per chandlerc's request.Joao Matos
2012-09-02Implemented 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-23Now that ASTMultiPtr is nothing more than a array reference, make it a Mutabl...Benjamin Kramer
2012-08-23Remove ASTOwningVector, it doesn't own anything and provides no value over Sm...Benjamin Kramer
2012-08-23Rip out remnants of move semantic emulation and smart pointers in Sema.Benjamin Kramer
2012-08-21Better diagnostics for range-based for loops with bad range types.Sam Panzer
2012-08-18PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers andRichard Smith
2012-08-16Removed unused LParenLoc parameter to ActOnCXXForRangeStmtSam Panzer
2012-08-15[ms-inline asm] MSVC parses multiple __asm statements on a single line as oneChad Rosier
2012-08-15[ms-inline asm] Add the left brace source location and improve the prettyChad 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. NoChad Rosier
2012-08-07[ms-inline asm] Stmt destructors are never called, so allocate the AsmToks usingChad Rosier
2012-08-06[ms-inline asm] Pass Tokens to Sema and store them in the AST. No functionalChad Rosier
2012-07-1080-column violations and whitespace.Chad Rosier
2012-07-03objective-c: Refactor parse/sema portion ofFariborz Jahanian