1. d1420c6 Store SourceManager pointer on PrintingPolicy in the case where we're dumping, by Richard Smith · 12 years ago
  2. 0dae729 Don't constant-fold when pretty-printing alignment attribute. This fixes a by Richard Smith · 12 years ago
  3. 7bd092b [ms-inline asm] Add the left brace source location and improve the pretty by Chad Rosier · 12 years ago
  4. 4990890 Inline storage of attributes in AttributedStmt. by Alexander Kornienko · 12 years ago
  5. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  6. f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 12 years ago
  7. 28ad063 Support L__FUNCTION__ in microsoft mode, PR11789 by Nico Weber · 12 years ago
  8. 8ab09da Moved the StringLiteral printing code from StmtPrinter into the StringLiteral by Richard Trieu · 12 years ago
  9. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  10. 8552437 Plug a long standing memory leak in TemplateArgument. by Benjamin Kramer · 12 years ago
  11. 79e244f move some stuff to .rodata by Nuno Lopes · 12 years ago
  12. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  13. 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 12 years ago
  14. ff34d40 Implement support for 18 of the GNU-compatible __atomic builtins. by Richard Smith · 12 years ago
  15. fafbf06 Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's by Richard Smith · 12 years ago
  16. 69f50e7 Fix assertions and wrong output from StmtPrinter's string literal printing. by Richard Smith · 12 years ago
  17. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  18. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 12 years ago
  19. ef9f298 Fix statement printing for raw and template user-defined literals. by Richard Smith · 12 years ago
  20. 9168830 Ensure we don't print 123ULL_foo when printing a user-defined integer literal. by Richard Smith · 12 years ago
  21. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 12 years ago
  22. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 12 years ago
  23. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 12 years ago
  24. 25d0a0f Provide the __is_trivially_assignable type trait, which provides by Douglas Gregor · 12 years ago
  25. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 12 years ago
  26. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 12 years ago
  27. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 12 years ago
  28. dfca6f5 Introduce support for template instantiation of lambda by Douglas Gregor · 12 years ago
  29. a59d20b Print NamedDecls directly to a raw_ostream where possible. by Benjamin Kramer · 12 years ago
  30. 01d0801 Introduce basic ASTs for lambda expressions. This covers: by Douglas Gregor · 12 years ago
  31. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 12 years ago
  32. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 12 years ago
  33. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 12 years ago
  34. 7a7ee30 Some improvements to the handling of C11 atomic types: by David Chisnall · 13 years ago
  35. a2d8669 Add assertion to char32_t that the value is valid, as suggested by Jordy Rose. by Richard Smith · 13 years ago
  36. 4debc82 Fix crash when trying to pretty-print unicode or wide string literals. by Richard Smith · 13 years ago
  37. 5e9392b Implement support for the __is_final type trait, to determine whether by Douglas Gregor · 13 years ago
  38. 381c066 Per an offline conversation with John McCall, have StmtPrinter actually print out the source expression for OpaqueValueExpr. by Ted Kremenek · 13 years ago
  39. 11cbe2a Add support for printing integer literals of type short, unsigned short, by Richard Trieu · 13 years ago
  40. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  41. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  42. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  43. 9e3c20b Silence some -Wuninitialized false positives with gcc. by Eli Friedman · 13 years ago
  44. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  45. b390921 Use APFloat::toString to print APFloats more precisely in the AST printer. Patch by Olaf Krzikalla. by Eli Friedman · 13 years ago
  46. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  47. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  48. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  49. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  50. 03e8003 Introduce a new AST node describing reference binding to temporaries. by Douglas Gregor · 13 years ago
  51. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  52. 61eee0c Add support for builtin astype: by Tanya Lattner · 13 years ago
  53. feb375d Implement the __is_trivially_copyable type trait by Sean Hunt · 13 years ago
  54. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 13 years ago
  55. a280bc8 Remove a few more bogus returns when the switch covers all the enumerators. by Chandler Carruth · 13 years ago
  56. e194710 Remove another default and a *completely* bogus return from a switch by Chandler Carruth · 13 years ago
  57. 98fa94d Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. by Chandler Carruth · 13 years ago
  58. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 13 years ago
  59. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 13 years ago
  60. 20c0da7 t/clang/type-traits by John Wiegley · 13 years ago
  61. 5526220 t/clang/expr-traits by John Wiegley · 13 years ago
  62. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago
  63. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  64. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  65. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 13 years ago
  66. 813d834 Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 13 years ago
  67. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 13 years ago
  68. e08ce65 AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions by Peter Collingbourne · 13 years ago
  69. 63c00d7 Remove vtables from the Stmt hierarchy; this was pretty easy as by John McCall · 13 years ago
  70. d64e237 StmtPrinter: factor out arg printing code to PrintCallArgs by Peter Collingbourne · 13 years ago
  71. 9f36113 Implement the Microsoft __is_convertible_to type trait, modeling the by Douglas Gregor · 13 years ago
  72. d0fb3ad Improve the printing of C++ construction expressions, from Yuri Gribov! by Douglas Gregor · 13 years ago
  73. 274f83c Check whether DependentScopeDeclRefExpr's NestedNameSpecifier exists before accessing it, both for consistency (see StmtPrinter::VisitDeclRefExpr()) and for other use cases of dependent types. by Axel Naumann · 13 years ago
  74. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  75. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  76. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  77. f187237 Remove the TypesCompatibleExprClass AST node. Merge its functionality into BinaryTypeTraitExpr. by Francois Pichet · 14 years ago
  78. 38c2b73 Fix enumerator not handled in switch warnings. by Francois Pichet · 14 years ago
  79. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  80. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  81. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  82. 7cd7d1a Add a new expression kind, OpaqueValueExpr, which is useful for by John McCall · 14 years ago
  83. 61e3828 Update to use 'LLVM_*' macro names for attributes. by Chandler Carruth · 14 years ago
  84. 8ac2d44 Eliminate usage of ObjCSuperExpr used for by Fariborz Jahanian · 14 years ago
  85. 2e15622 Define and implement CXXNoexceptExpr. Create it in Sema. by Sebastian Redl · 14 years ago
  86. 01b7c30 Microsoft's __uuidof operator implementation part 1. by Francois Pichet · 14 years ago
  87. ab6677e Provide proper type-source location information for by Douglas Gregor · 14 years ago
  88. e2ca6d4 Eliminate CXXBindReferenceExpr, which was used in a ton of by Douglas Gregor · 14 years ago
  89. 6cf7502 Revert my user-defined literal commits - r1124{58,60,67} pending by Sean Hunt · 14 years ago
  90. 0016d51 Implement C++0x user-defined string literals. by Sean Hunt · 14 years ago
  91. 2de56d1 GCC didn't care for my attempt at API compatibility, so brute-force everything by John McCall · 14 years ago
  92. 096832c Regularize the API for accessing explicit template arguments. by John McCall · 14 years ago
  93. 4087f27 StringRef'ication of lots stuff, patch by Peter Davies! by Daniel Dunbar · 14 years ago
  94. 2f4eaef Convert all uses of StringLiteral::getStrData() to StringLiteral::getString() by Benjamin Kramer · 14 years ago
  95. 78e4cc7 Some refactoring on StmtPrinter to avoid unused function warnings. by Argyrios Kyrtzidis · 14 years ago
  96. de7e662 Zap unused UnaryOperator::OffsetOf. by Eli Friedman · 14 years ago
  97. 2577743 Added locations and type source info for DeclarationName. by Abramo Bagnara · 14 years ago
  98. 9668033 Revert the dump functions to send output to llvm::errs(), matching the LLVM convention; suggestion by Daniel. by Argyrios Kyrtzidis · 14 years ago
  99. bc1e146 Send AST dumping/printing to stdout instead of stderr. by Argyrios Kyrtzidis · 14 years ago
  100. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago