| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Update documentation of HasSideEffects to match its callers' expectations, and | Richard Smith | 2012-08-07 | 1 | -20/+18 |
* | Teach Expr::HasSideEffects about all the Expr types, and fix a bug where it | Richard Smith | 2012-08-07 | 1 | -0/+215 |
* | Handle the case where the base type is not dependent, but the derived one is. | Rafael Espindola | 2012-07-17 | 1 | -0/+3 |
* | Drop the ASTContext.h include from Stmt.h and fix up transitive users. | Benjamin Kramer | 2012-07-04 | 1 | -0/+28 |
* | Fix another issue with devirtualizing calls to final methods by passing them | Rafael Espindola | 2012-06-28 | 1 | -16/+22 |
* | Implement John McCall's review of r159212 other than the this pointer not | Rafael Espindola | 2012-06-27 | 1 | -6/+1 |
* | During codegen of a virtual call we would extract any casts in the expression | Rafael Espindola | 2012-06-26 | 1 | -0/+31 |
* | Make the ".*" operator work correctly when the base is a prvalue and the fiel... | Eli Friedman | 2012-06-15 | 1 | -0/+4 |
* | Moved the StringLiteral printing code from StmtPrinter into the StringLiteral | Richard Trieu | 2012-06-13 | 1 | -0/+93 |
* | PR13099: Teach -Wformat about raw string literals, UTF-8 strings and Unicode ... | Richard Smith | 2012-06-13 | 1 | -1/+2 |
* | Remove unused variable. | Dmitri Gribenko | 2012-06-12 | 1 | -5/+0 |
* | A minor tweak to the new volatile lvalue warning: don't warn on "(void)x", wh... | Eli Friedman | 2012-05-24 | 1 | -25/+22 |
* | Add a warning to diagnose statements in C++ like "*(volatile int*)x;". Conce... | Eli Friedman | 2012-05-24 | 1 | -48/+73 |
* | The Lexer constructor expects a source location at the start of the | Argyrios Kyrtzidis | 2012-05-11 | 1 | -2/+2 |
* | Use raw_ostream in TypePrinter and eliminate uses of temporary std::strings. | Argyrios Kyrtzidis | 2012-05-05 | 1 | -3/+1 |
* | Implement DR1330 in C++11 mode, to support libstdc++4.7 which uses it. | Richard Smith | 2012-04-17 | 1 | -325/+0 |
* | PR12226: don't generate wrong code if a braced string literal is used to | Richard Smith | 2012-04-15 | 1 | -0/+10 |
* | Implement __atomic_fetch_nand and __atomic_nand_fetch to complete our set of | Richard Smith | 2012-04-13 | 1 | -0/+2 |
* | Implement support for 18 of the GNU-compatible __atomic builtins. | Richard Smith | 2012-04-12 | 1 | -11/+35 |
* | AtomicExpr: make ASTStmtReader a friend and remove setters. Also fix saving | Richard Smith | 2012-04-10 | 1 | -0/+21 |
* | Improve the printing of __PRETTY_FUNCTION__ more provide more | Douglas Gregor | 2012-04-10 | 1 | -9/+69 |
* | ObjCBoolLiterals (__objc_yes/__objc_no) behave like C++ booleans (true/false)... | Jordy Rose | 2012-03-12 | 1 | -1/+1 |
* | Unify naming of LangOptions variable/get function across the Clang stack (Lex... | David Blaikie | 2012-03-11 | 1 | -6/+6 |
* | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall | 2012-03-10 | 1 | -27/+8 |
* | [AST] Define a few more key getLocStart() implementations. | Daniel Dunbar | 2012-03-09 | 1 | -0/+18 |
* | [AST] Reimplement Stmt::getLoc{Start,End} to dispatch to subclass overloads. | Daniel Dunbar | 2012-03-09 | 1 | -1/+3 |
* | [AST] Add {DeclRefExpr,MemberExpr,ImplicitCastExpr}::{getLocStart,getLocEnd} ... | Daniel Dunbar | 2012-03-09 | 1 | -14/+26 |
* | [AST] Reduce Decl::getASTContext() calls. | Daniel Dunbar | 2012-03-09 | 1 | -11/+12 |
* | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -2/+4 |
* | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek | 2012-03-06 | 1 | -0/+121 |
* | Fix a couple -Wuninitialized warnings from gcc. Reported by David Greene. | Eli Friedman | 2012-02-29 | 1 | -1/+2 |
* | ArrayRef'ize various functions in the AST/Parser/Sema. | Ahmed Charles | 2012-02-25 | 1 | -12/+2 |
* | Revert r151357. That unreachable is reachable... | Nick Lewycky | 2012-02-24 | 1 | -11/+8 |
* | Silence gcc warnings pointing out that CharByteWidth could be used | Nick Lewycky | 2012-02-24 | 1 | -8/+11 |
* | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -0/+1 |
* | Seriously, are injected-class-names that hard? | Douglas Gregor | 2012-02-23 | 1 | -1/+1 |
* | Provide the __is_trivially_assignable type trait, which provides | Douglas Gregor | 2012-02-23 | 1 | -0/+55 |
* | Generate an AST for the conversion from a lambda closure type to a | Douglas Gregor | 2012-02-22 | 1 | -0/+7 |
* | ObjCMessageExpr: Don't leave SelLocsKind uninitialized when the send is impli... | Benjamin Kramer | 2012-02-20 | 1 | -1/+1 |
* | Basic code generation support for std::initializer_list. | Sebastian Redl | 2012-02-17 | 1 | -3/+4 |
* | Block expressions always have a prototyped function type; expose this | John McCall | 2012-02-17 | 1 | -3/+4 |
* | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl | 2012-02-16 | 1 | -4/+1 |
* | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl | 2012-02-16 | 1 | -1/+4 |
* | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl | 2012-02-16 | 1 | -4/+1 |
* | Split reinterpret_casts of member pointers out from CK_BitCast; this | John McCall | 2012-02-15 | 1 | -0/+7 |
* | Pending clear answer from WG21 on whether core issue 903 is intended to apply to | Richard Smith | 2012-02-14 | 1 | -4/+11 |
* | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -3/+2 |
* | Switch the ObjC*Decl raw_stream overloads to take a reference, for consistenc... | Benjamin Kramer | 2012-02-07 | 1 | -1/+1 |
* | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor | 2012-02-07 | 1 | -0/+10 |
* | Basic: import SmallString<> into clang namespace | Dylan Noblesmith | 2012-02-05 | 1 | -2/+2 |