| Commit message (Expand) | Author | Age | Files | Lines |
| * | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -10/+11 |
| * | Some improvements to the handling of C11 atomic types: | David Chisnall | 2012-01-16 | 1 | -1/+5 |
| * | Add assertion to char32_t that the value is valid, as suggested by Jordy Rose. | Richard Smith | 2012-01-02 | 1 | -1/+1 |
| * | Fix crash when trying to pretty-print unicode or wide string literals. | Richard Smith | 2011-12-30 | 1 | -8/+19 |
| * | Implement support for the __is_final type trait, to determine whether | Douglas Gregor | 2011-12-03 | 1 | -0/+1 |
| * | Per an offline conversation with John McCall, have StmtPrinter actually print... | Ted Kremenek | 2011-11-30 | 1 | -1/+3 |
| * | Add support for printing integer literals of type short, unsigned short, | Richard Trieu | 2011-11-07 | 1 | -0/+7 |
| * | Change the AST representation of operations on Objective-C | John McCall | 2011-11-06 | 1 | -0/+4 |
| * | Implement support for dependent Microsoft __if_exists/__if_not_exists | Douglas Gregor | 2011-10-25 | 1 | -0/+16 |
| * | Change operator<< for raw_ostream and NamedDecl to take a reference instead o... | Benjamin Kramer | 2011-10-14 | 1 | -3/+3 |
| * | Silence some -Wuninitialized false positives with gcc. | Eli Friedman | 2011-10-11 | 1 | -1/+1 |
| * | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman | 2011-10-11 | 1 | -0/+53 |
| * | Use APFloat::toString to print APFloats more precisely in the AST printer. P... | Eli Friedman | 2011-10-05 | 1 | -2/+3 |
| * | Switch assert(0/false) llvm_unreachable. | David Blaikie | 2011-09-23 | 1 | -3/+3 |
| * | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -3/+15 |
| * | remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.... | Chris Lattner | 2011-07-23 | 1 | -7/+7 |
| * | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall | 2011-07-15 | 1 | -0/+5 |
| * | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+4 |
| * | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -0/+17 |
| * | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -0/+7 |
| * | Implement the __is_trivially_copyable type trait | Alexis Hunt | 2011-05-13 | 1 | -0/+1 |
| * | Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and | Alexis Hunt | 2011-05-09 | 1 | -1/+1 |
| * | Remove a few more bogus returns when the switch covers all the | Chandler Carruth | 2011-05-01 | 1 | -4/+3 |
| * | Remove another default and a *completely* bogus return from a switch | Chandler Carruth | 2011-05-01 | 1 | -2/+2 |
| * | Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. | Chandler Carruth | 2011-05-01 | 1 | -2/+0 |
| * | Parsing/AST support for Structured Exception Handling | John Wiegley | 2011-04-28 | 1 | -0/+42 |
| * | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+13 |
| * | t/clang/type-traits | John Wiegley | 2011-04-27 | 1 | -4/+31 |
| * | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+15 |
| * | Implement basic __is_trivial type-trait support, enough to close PR9472. | Chandler Carruth | 2011-04-23 | 1 | -0/+1 |
| * | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -0/+17 |
| * | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -0/+12 |
| * | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -2/+12 |
| * | Selector::getIdentifierInfoForSlot() can return NULL values, a fact | Douglas Gregor | 2011-02-18 | 1 | -1/+1 |
| * | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -10/+9 |
| * | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne | 2011-02-09 | 1 | -0/+9 |
| * | Remove vtables from the Stmt hierarchy; this was pretty easy as | John McCall | 2011-02-09 | 1 | -4/+0 |
| * | StmtPrinter: factor out arg printing code to PrintCallArgs | Peter Collingbourne | 2011-02-08 | 1 | -3/+8 |
| * | Implement the Microsoft __is_convertible_to type trait, modeling the | Douglas Gregor | 2011-01-27 | 1 | -1/+1 |
| * | Improve the printing of C++ construction expressions, from Yuri Gribov! | Douglas Gregor | 2011-01-24 | 1 | -7/+8 |
| * | Check whether DependentScopeDeclRefExpr's NestedNameSpecifier exists before a... | Axel Naumann | 2011-01-24 | 1 | -1/+2 |
| * | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor | 2011-01-15 | 1 | -0/+6 |
| * | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 1 | -1/+5 |
| * | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+5 |
| * | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -7/+2 |
| * | Fix enumerator not handled in switch warnings. | Francois Pichet | 2010-12-07 | 1 | -2/+2 |
| * | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -1/+16 |
| * | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall | 2010-12-06 | 1 | -1/+1 |
| * | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 1 | -14/+4 |
| * | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall | 2010-11-15 | 1 | -0/+3 |