| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Further adjustments to -Wglobal-constructors; works for references and direct | John McCall | 2010-08-02 | 1 | -18/+28 |
* | Kill off RequiresGlobalConstructor in favor of isConstantInitializer. | John McCall | 2010-08-01 | 1 | -0/+15 |
* | Remove the vast majority of the Destroy methods from the AST library, | Douglas Gregor | 2010-07-25 | 1 | -69/+0 |
* | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl | 2010-07-20 | 1 | -2/+4 |
* | Introduce a new cast kind for an "lvalue bitcast", which handles | Douglas Gregor | 2010-07-13 | 1 | -0/+2 |
* | When forming a function call or message send expression, be sure to | Douglas Gregor | 2010-07-13 | 1 | -1/+4 |
* | Read/write the C++ parts of DeclRefExpr and MemberExpr for PCH. | Argyrios Kyrtzidis | 2010-07-08 | 1 | -0/+13 |
* | Fix rdar://8139785 "implement warning on dead expression in comma operator" | Argyrios Kyrtzidis | 2010-06-30 | 1 | -3/+8 |
* | Introduce Expr::Classify and Expr::ClassifyModifiable, which determine the cl... | Sebastian Redl | 2010-06-28 | 1 | -372/+0 |
* | Support a couple more C++ Exprs for PCH. | Argyrios Kyrtzidis | 2010-06-24 | 1 | -2/+6 |
* | Do not treat @selector as lvalue (unlike g++). | Fariborz Jahanian | 2010-06-17 | 1 | -1/+0 |
* | Objective-c++ IRGen. Support for @selector expression as | Fariborz Jahanian | 2010-06-17 | 1 | -0/+1 |
* | Give Type::isIntegralType() an ASTContext parameter, so that it | Douglas Gregor | 2010-06-16 | 1 | -4/+5 |
* | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor | 2010-06-16 | 1 | -4/+5 |
* | When deciding whether an expression has the boolean nature, don't look through | John McCall | 2010-06-12 | 1 | -1/+3 |
* | Substantially alter the design of the Objective C type AST by introducing | John McCall | 2010-05-15 | 1 | -3/+3 |
* | add a couple of key functions for classes without them. | Chris Lattner | 2010-05-13 | 1 | -0/+2 |
* | Static data members intialized in-class that have constant values are | Douglas Gregor | 2010-05-11 | 1 | -1/+1 |
* | Fix indentation | Douglas Gregor | 2010-05-11 | 1 | -1/+1 |
* | A DeclRefExpr that refers to a member function or a static data member | Douglas Gregor | 2010-05-11 | 1 | -3/+14 |
* | Don't complain about an __builtin_va_arg expression's result being | Douglas Gregor | 2010-05-08 | 1 | -0/+1 |
* | Move CheckICE and isIntegerConstantExpr to ExprConstant.cpp because it seemed | John McCall | 2010-05-07 | 1 | -379/+0 |
* | Add IgnoreParenImpCasts() to Expr, which is basically like IgnoreParenCasts | John McCall | 2010-05-05 | 1 | -1/+15 |
* | Reapplying patch to change StmtNodes.def to StmtNodes.td, this time | Alexis Hunt | 2010-05-05 | 1 | -1/+1 |
* | Revert r103072; I accidentally ended up deleting a bunch of trailing | Alexis Hunt | 2010-05-05 | 1 | -80/+80 |
* | Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes | Alexis Hunt | 2010-05-05 | 1 | -80/+80 |
* | Fix a thinko that caused us not to compute __builtin_offset as a | Douglas Gregor | 2010-04-30 | 1 | -1/+4 |
* | When determining a standard conversion sequence involves resolving the | Douglas Gregor | 2010-04-29 | 1 | -0/+1 |
* | Completely reimplement __builtin_offsetof, based on a patch by Roberto | Douglas Gregor | 2010-04-28 | 1 | -3/+64 |
* | Wrap a couple of long lines. (Test commit.) | Enea Zaffanella | 2010-04-27 | 1 | -2/+4 |
* | CastExpr should not hold a pointer to the base path. More cleanup. | Anders Carlsson | 2010-04-24 | 1 | -2/+1 |
* | Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBase... | Anders Carlsson | 2010-04-24 | 1 | -2/+2 |
* | Destroy the inheritance path. | Anders Carlsson | 2010-04-23 | 1 | -0/+7 |
* | Implement template instantiation for Objective-C++ message sends. We | Douglas Gregor | 2010-04-22 | 1 | -3/+3 |
* | CXXNamedCastExpr is actually an abstract expression. | Zhongxing Xu | 2010-04-21 | 1 | -1/+0 |
* | Overhaul the AST representation of Objective-C message send | Douglas Gregor | 2010-04-21 | 1 | -92/+149 |
* | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer | 2010-04-17 | 1 | -6/+4 |
* | make our existing "switch on bool" warning work for C. Since | Chris Lattner | 2010-04-16 | 1 | -0/+59 |
* | Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance | Ted Kremenek | 2010-04-13 | 1 | -9/+10 |
* | Don't emit an 'unused expression' warning for '||' and '&&' expressions that ... | Ted Kremenek | 2010-04-07 | 1 | -12/+15 |
* | Implement the protected access restriction ([class.protected]), which requires | John McCall | 2010-04-06 | 1 | -2/+4 |
* | Rework our handling of copy construction of temporaries, which was a | Douglas Gregor | 2010-04-02 | 1 | -0/+65 |
* | Remove the AST statistics tracking I added yesterday; it didn't pan out. | Douglas Gregor | 2010-03-31 | 1 | -7/+0 |
* | Introduce a new kind of derived-to-base cast which bypasses the need for | John McCall | 2010-03-30 | 1 | -0/+2 |
* | Propagate the "found declaration" (i.e. the using declaration instead of | John McCall | 2010-03-30 | 1 | -25/+26 |
* | Introduce new AST statistics that keep track of the number of isa (or | Douglas Gregor | 2010-03-30 | 1 | -0/+7 |
* | Add Support for 'warn_unused_result" attribute on | Fariborz Jahanian | 2010-03-30 | 1 | -1/+8 |
* | Make PredefinedExpr::ComputeName() more robust to incorrect | Ted Kremenek | 2010-03-18 | 1 | -1/+6 |
* | Some cleanup, change diagnostic when assigning to | Fariborz Jahanian | 2010-03-18 | 1 | -5/+3 |
* | Improve the unused-value check to look into comma expressions and filter out | John McCall | 2010-03-12 | 1 | -2/+8 |