aboutsummaryrefslogtreecommitdiff
path: root/include/clang/AST/Stmt.h
AgeCommit message (Expand)Author
2013-10-20Miscellaneous speling fixes.Benjamin Kramer
2013-08-22Constify some more ASTContext& uses.Craig Topper
2013-08-22Constify the ASTContext& passed to Stmt creation functions. Also constify the...Craig Topper
2013-08-21Revert accidental commit.Craig Topper
2013-08-21Replace avx-512 with avx512f to match llvm side and what gcc patches appear t...Craig Topper
2013-08-20Revert r188756 because some other changes snuck in with it.Craig Topper
2013-08-20Add AVX-512 feature flag and knl cpu to clang.Craig Topper
2013-08-19Make the version of Stmt::operator new that takes ASTContext* call the ASTCon...Craig Topper
2013-08-18Revert r188644 to unbreak buildbots.Craig Topper
2013-08-18Remove Stmt::operator new that takes a ASTContext*. All callers use the ASTCo...Craig Topper
2013-08-18Remove throw() from Stmt::operator new so the compiler will omit the null che...Craig Topper
2013-08-18Make expression allocation methods use a 'const' reference to the ASTContext ...Craig Topper
2013-06-27Delete dead code.Eli Friedman
2013-06-12PR12086, PR15117Richard Smith
2013-06-05Model temporary lifetime-extension explicitly in the AST. Use this model toRichard Smith
2013-05-12C++1y: support for 'switch' statements in constexpr functions. This is somewhatRichard Smith
2013-05-04Implement template support for CapturedStmtWei Pan
2013-05-03Serialization for captured statementsBen Langmuir
2013-05-03Move parsing of identifiers in MS-style inline assembly intoJohn McCall
2013-04-29Small CapturedStmt improvementsBen Langmuir
2013-04-16Sema for Captured StatementsTareq A. Siraj
2013-04-16Implement CapturedStmt ASTTareq A. Siraj
2013-02-23Remove data member MSAsmStmt::AsmLoc, wrongly hiding AsmStmt::AsmLoc.Enea Zaffanella
2013-01-26Highlight various parts of the AST dump with color. Colors are controlled byRichard Trieu
2013-01-22Switch to APFloat constructor taking fltSemantics.Tim Northover
2013-01-12Remove useless 'llvm::' qualifier from names like StringRef and others that areDmitri Gribenko
2013-01-04Move the common source locations of CastStmt & DefaultStmt into their base cl...Argyrios Kyrtzidis
2012-12-29ArrayRefize a CompoundStmt constructor.Nico Weber
2012-12-25Fix for PR12222.Erik Verbruggen
2012-12-01Include pruning and general cleanup.Benjamin Kramer
2012-12-01Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ...Benjamin Kramer
2012-11-16StmtDumper: remove incomplete support for limiting the maximum dump depth.Dmitri Gribenko
2012-10-16[ms-inline asm] Move some logic around to simplify the interface between theChad Rosier
2012-10-11Remove pointless classof()'s.Sean Silva
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-28[ms-inline asm] Add constraints to MSAsmStmt. We don't currently computeChad Rosier
2012-08-28[ms-inline asm] Make the AsmStmt class non-virtual.Chad Rosier
2012-08-28[ms-inline asm] Hoist more common code into the AsmStmt base class. Add stubsChad Rosier
2012-08-27[ms-inline asm] Add virtual function, getClobber, that returns a StringRef.Chad Rosier
2012-08-27[ms-inline asm] Hoist getNumClobbers into base class.Chad Rosier
2012-08-27[ms-inline asm] Rename getClobber to getClobberStringLiteral. No functionalChad Rosier
2012-08-27Appease -Wnon-virtual-dtorMatt Beaumont-Gay
2012-08-27[ms-inline asm] Add a few comments.Chad Rosier
2012-08-27[ms-inline asm] Hoist common Expr handling logic into AsmStmt.Chad Rosier
2012-08-27[ms-inline asm] Rename GenerateAsmString to generateAsmString to conform withChad Rosier
2012-08-27[ms-inline asm] Base class AsmStmt implements these.Chad Rosier
2012-08-27[ms-inline asm] Hoist common logic into the AsmStmt base class.Chad Rosier
2012-08-27[ms-inline asm] Add a new base class, AsmStmt, for the GCCAsmStmt and MSAsmStmtChad Rosier
2012-08-27Update comment, per Jordan's suggestion.Chad Rosier