Age | Commit message (Expand) | Author |
2010-06-16 | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor |
2010-06-12 | When deciding whether an expression has the boolean nature, don't look through | John McCall |
2010-05-15 | Substantially alter the design of the Objective C type AST by introducing | John McCall |
2010-05-13 | add a couple of key functions for classes without them. | Chris Lattner |
2010-05-11 | Static data members intialized in-class that have constant values are | Douglas Gregor |
2010-05-11 | Fix indentation | Douglas Gregor |
2010-05-11 | A DeclRefExpr that refers to a member function or a static data member | Douglas Gregor |
2010-05-08 | Don't complain about an __builtin_va_arg expression's result being | Douglas Gregor |
2010-05-07 | Move CheckICE and isIntegerConstantExpr to ExprConstant.cpp because it seemed | John McCall |
2010-05-05 | Add IgnoreParenImpCasts() to Expr, which is basically like IgnoreParenCasts | John McCall |
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-30 | Fix a thinko that caused us not to compute __builtin_offset as a | Douglas Gregor |
2010-04-29 | When determining a standard conversion sequence involves resolving the | Douglas Gregor |
2010-04-28 | Completely reimplement __builtin_offsetof, based on a patch by Roberto | Douglas Gregor |
2010-04-27 | Wrap a couple of long lines. (Test commit.) | Enea Zaffanella |
2010-04-24 | CastExpr should not hold a pointer to the base path. More cleanup. | Anders Carlsson |
2010-04-24 | Rename InheritancePath to BasePath, rename CastExpr::CXXBaseVector to CXXBase... | Anders Carlsson |
2010-04-23 | Destroy the inheritance path. | Anders Carlsson |
2010-04-22 | Implement template instantiation for Objective-C++ message sends. We | Douglas Gregor |
2010-04-21 | CXXNamedCastExpr is actually an abstract expression. | Zhongxing Xu |
2010-04-21 | Overhaul the AST representation of Objective-C message send | Douglas Gregor |
2010-04-17 | Add raw_ostream operators to NamedDecl for convenience. Switch over all users... | Benjamin Kramer |
2010-04-16 | make our existing "switch on bool" warning work for C. Since | Chris Lattner |
2010-04-13 | Use ASTVector instead of std::vector for the Exprs in InitListExpr. Performance | Ted Kremenek |
2010-04-07 | Don't emit an 'unused expression' warning for '||' and '&&' expressions that ... | Ted Kremenek |
2010-04-06 | Implement the protected access restriction ([class.protected]), which requires | John McCall |
2010-04-02 | Rework our handling of copy construction of temporaries, which was a | Douglas Gregor |
2010-03-31 | Remove the AST statistics tracking I added yesterday; it didn't pan out. | Douglas Gregor |
2010-03-30 | Introduce a new kind of derived-to-base cast which bypasses the need for | John McCall |
2010-03-30 | Propagate the "found declaration" (i.e. the using declaration instead of | John McCall |
2010-03-30 | Introduce new AST statistics that keep track of the number of isa (or | Douglas Gregor |
2010-03-30 | Add Support for 'warn_unused_result" attribute on | Fariborz Jahanian |
2010-03-18 | Make PredefinedExpr::ComputeName() more robust to incorrect | Ted Kremenek |
2010-03-18 | Some cleanup, change diagnostic when assigning to | Fariborz Jahanian |
2010-03-12 | Improve the unused-value check to look into comma expressions and filter out | John McCall |
2010-03-10 | When pretty-printing tag types, only print the tag if we're in C (and | John McCall |
2010-03-08 | Extend ObjCMessageExpr for class method sends with the source location | Douglas Gregor |
2010-02-24 | References to const int parameters with ICE default arguments are not ICEs. | John McCall |
2010-02-19 | Revert: "Change InitListExpr to allocate the array for holding references" | Ted Kremenek |
2010-02-19 | Change InitListExpr to allocate the array for holding references | Ted Kremenek |
2010-02-16 | Introduce a new kind of failed result for isLvalue/isModifiableLvalue | Douglas Gregor |
2010-02-16 | White-list comma expressions with the literal 0 as their RHS against | John McCall |
2010-02-12 | Don't error when setting a sub-structure variable via objc properties | Fariborz Jahanian |
2010-02-11 | Allocate the SubExprs array in ObjCMessageExpr using the allocator associated... | Ted Kremenek |
2010-02-11 | More vtable layout dumper improvements. Handle destructors, dump the complete... | Anders Carlsson |
2010-02-11 | Diagnose when user provided getter is being used as lvalue | Fariborz Jahanian |
2010-02-06 | Per discussion, remove the explicit restriction on static const data members ... | John McCall |
2010-02-03 | Revert "Numerous changes to selector handling:", this breaks a whole bunch of | Daniel Dunbar |