Age | Commit message (Expand) | Author |
2012-04-14 | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith |
2012-03-09 | [AST/Sema/libclang] Replace getSourceRange().getBegin() with getLocStart(). | Daniel Dunbar |
2012-03-09 | [AST] Reimplement Stmt::getLoc{Start,End} to dispatch to subclass overloads. | Daniel Dunbar |
2012-03-05 | AST/stats: Don't effectively use an out-of-line function to return a static | Daniel Dunbar |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2011-09-10 | Extend the Stmt AST to make it easier to look through label, default, | Chandler Carruth |
2011-09-02 | Extend the ASTContext constructor to delay the initialization of | Douglas Gregor |
2011-07-23 | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner |
2011-07-07 | In ARC, reclaim all return values of retainable type, not just those | John McCall |
2011-07-05 | Don't overread the buffer when an %x escape in inline asm ends prematurely. | Benjamin Kramer |
2011-07-04 | Switch the Decl and Stmt stats printing to use llvm::errs() instead of | Chandler Carruth |
2011-04-28 | Parsing/AST support for Structured Exception Handling | John Wiegley |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-02-28 | tidy up | Chris Lattner |
2011-02-21 | add one more case of mismatched input/output constraints. | Chris Lattner |
2011-02-17 | Step #1/N of implementing support for __label__: split labels into | Chris Lattner |
2011-02-09 | Non-void functions need to return some value. | Nick Lewycky |
2011-02-09 | Give these little helper functions definitions so that newer gccs stop | John McCall |
2011-02-09 | Remove vtables from the Stmt hierarchy; this was pretty easy as | John McCall |
2010-11-20 | Revert r119838 "Don't warn for empty 'if' body if there is a macro that expan... | Argyrios Kyrtzidis |
2010-11-19 | Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: | Argyrios Kyrtzidis |
2010-10-30 | Rename alignof -> alignOf to avoid irritating C++'0x compilers, | Chris Lattner |
2010-10-28 | Implement an indirect-goto optimization for goto *&&lbl and respect this | John McCall |
2010-10-26 | Optimize field space usage in CompoundStmt, LabelStmt, Expr, and CastExpr. | John McCall |
2010-09-09 | Initialize 'AllEnumCasesCovered' in SwitchStmt's constructor. | Ted Kremenek |
2010-08-25 | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall |
2010-08-17 | Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() | Benjamin Kramer |
2010-07-25 | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor |
2010-07-22 | Support C++ try/catch statements for PCH. | Argyrios Kyrtzidis |
2010-07-06 | Added a path-sensitive idempotent operation checker (-analyzer-idempotent-ope... | Tom Care |
2010-07-06 | Added several helper functions to Stmt to recursively check for different ele... | Tom Care |
2010-06-21 | Alter the internal representation of the condition variable in | Douglas Gregor |
2010-05-18 | Switch over the tablegen to use much prettier range technology | Sean Hunt |
2010-05-05 | Reapplying patch to change StmtNodes.def to StmtNodes.td, this time | Sean Hunt |
2010-05-05 | Revert r103072; I accidentally ended up deleting a bunch of trailing | Sean Hunt |
2010-05-05 | Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes | Sean Hunt |
2010-04-23 | Improve the AST representation of Objective-C @try/@catch/@finally | Douglas Gregor |
2010-04-23 | david conrad points out that {|} in inline assembly on arm are not asm | Chris Lattner |
2010-04-05 | fix PR6780, properly handling the IR {|} escapes in inline asm strings. | Chris Lattner |
2010-03-31 | Remove the AST statistics tracking I added yesterday; it didn't pan out. | Douglas Gregor |
2010-03-30 | Introduce new AST statistics that keep track of the number of isa (or | Douglas Gregor |
2010-02-03 | Implement Doug's suggestion. Eliminate the Stmts pointer from CXXTryStmt and ... | Sam Weinig |
2010-02-03 | Remove the SmallVector from CXXTryStmt. | Sam Weinig |
2010-02-03 | Remove abstract expression kinds from the StmtClass enum. Update a few users | John McCall |
2010-01-31 | Try to unbreak MSVC build. | Benjamin Kramer |
2010-01-30 | Remove the SmallVectors from AsmStmt. Fixes PR6105. | Anders Carlsson |
2010-01-30 | Use IdentifierInfo * instead of std::string for the AsmStmt names. | Anders Carlsson |
2010-01-30 | Fix thinko. | Anders Carlsson |
2010-01-30 | Even more AsmStmt cleanup. | Anders Carlsson |
2010-01-30 | Combine AsmStmt::setOutputsAndInputs and AsmStmt::setClobbers. | Anders Carlsson |