1. 7c3e615 PR12086, PR15117 by Richard Smith · 11 years ago
  2. d3bb9ff Fix printing CXXTemporaryObjectExpr with default args. by Rafael Espindola · 11 years ago
  3. 0d8e964 First pass of semantic analysis for init-captures: check the initializer, build by Richard Smith · 12 years ago
  4. aeeacf7 Move parsing of identifiers in MS-style inline assembly into by John McCall · 12 years ago
  5. 28fff53 Fix spurious trailing comma when printing some of the __c11_atomic_* builtins. Patch by Joe Sprowes! by Richard Smith · 12 years ago
  6. c3bf52c C++1y: Allow aggregates to have default initializers. by Richard Smith · 12 years ago
  7. 6afcf88 Sema for Captured Statements by Tareq A. Siraj · 12 years ago
  8. 051303c Implement CapturedStmt AST by Tareq A. Siraj · 12 years ago
  9. 76da55d Basic support for Microsoft property declarations and references thereto. by John McCall · 12 years ago
  10. 9ef9875 Implement compiler intrinsics needed for compatibility with MSVC 2012 <type_traits>. by Joao Matos · 12 years ago
  11. 5eada84 Streamify getNameForDiagnostic and remove the string versions of PrintTemplateArgumentList. by Benjamin Kramer · 12 years ago
  12. 9d4df46 StmtPrinter: Directly print types to the stream instead of taking a detour through getAsString. by Benjamin Kramer · 12 years ago
  13. 6d4f734 StmtPrinter: Write large char values using \u or \U. by Jordan Rose · 12 years ago
  14. ad017fa Revert r170500. It over-zealously converted *ALL* things named Attributes, which is wrong here. by Bill Wendling · 12 years ago
  15. d538ed9 Implement AST dumper for Decls. http://llvm-reviews.chandlerc.com/D52 by Alexander Kornienko · 12 years ago
  16. 094dbf9 Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future. by Bill Wendling · 12 years ago
  17. c83c230 PR13470: Ensure that copy-list-initialization isntantiates as by Richard Smith · 12 years ago
  18. 3e2fe86 Testing C declarations embedded in by Fariborz Jahanian · 12 years ago
  19. 2fa67ef Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't pull in all the generated Attr code. by Benjamin Kramer · 12 years ago
  20. 731de31 80 cols & unnecessary braces from r167736. by David Blaikie · 12 years ago
  21. 383ec17 Correct printing of nested anonymous type member accesses. by David Blaikie · 12 years ago
  22. a7a38cb Fix pretty-printing pseudo-destructor calls. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  23. 25c9bc1 Use the type as written when pretty-printing C-style casts. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  24. d03ef04 Fix AST pretty-printing for C++ new expressions with placement arguments with default values. by Eli Friedman · 12 years ago
  25. 915c07d Fix pretty-printing for variables declared in a condition. Patch by Grzegorz Jablonski. by Eli Friedman · 12 years ago
  26. a143a9d Fix -ast-print for uses of operator->. by Eli Friedman · 12 years ago
  27. ea30e2f Add the Microsoft __is_interface_class type trait. Patch by Andy Gibbs! by John McCall · 12 years ago
  28. a0a3c90 StmtPrinter: Print floating point literals with the right suffix to disambiguate them from integers. by Benjamin Kramer · 12 years ago
  29. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  30. 568ba87 Revert r163083 per chandlerc's request. by Joao Matos · 12 years ago
  31. 5be92de Implemented parsing and AST support for the MS __leave exception statement. Also a minor fix to __except printing in StmtPrinter.cpp. Thanks to Aaron Ballman for review. by Joao Matos · 12 years ago
  32. 5c7f594 [ms-inline asm] Rename getClobber to getClobberStringLiteral. No functional by Chad Rosier · 12 years ago
  33. df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
  34. d1420c6 Store SourceManager pointer on PrintingPolicy in the case where we're dumping, by Richard Smith · 12 years ago
  35. 0dae729 Don't constant-fold when pretty-printing alignment attribute. This fixes a by Richard Smith · 12 years ago
  36. 7bd092b [ms-inline asm] Add the left brace source location and improve the pretty by Chad Rosier · 12 years ago
  37. 4990890 Inline storage of attributes in AttributedStmt. by Alexander Kornienko · 12 years ago
  38. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  39. f70a886 Add support for the C11 _Alignof keyword. by Jordan Rose · 12 years ago
  40. 28ad063 Support L__FUNCTION__ in microsoft mode, PR11789 by Nico Weber · 12 years ago
  41. 8ab09da Moved the StringLiteral printing code from StmtPrinter into the StringLiteral by Richard Trieu · 12 years ago
  42. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  43. 8552437 Plug a long standing memory leak in TemplateArgument. by Benjamin Kramer · 12 years ago
  44. 79e244f move some stuff to .rodata by Nuno Lopes · 13 years ago
  45. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 13 years ago
  46. 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 13 years ago
  47. ff34d40 Implement support for 18 of the GNU-compatible __atomic builtins. by Richard Smith · 13 years ago
  48. fafbf06 Provide, and document, a set of __c11_atomic_* intrinsics to implement C11's by Richard Smith · 13 years ago
  49. 69f50e7 Fix assertions and wrong output from StmtPrinter's string literal printing. by Richard Smith · 13 years ago
  50. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  51. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 13 years ago
  52. ef9f298 Fix statement printing for raw and template user-defined literals. by Richard Smith · 13 years ago
  53. 9168830 Ensure we don't print 123ULL_foo when printing a user-defined integer literal. by Richard Smith · 13 years ago
  54. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 13 years ago
  55. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 13 years ago
  56. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 13 years ago
  57. 25d0a0f Provide the __is_trivially_assignable type trait, which provides by Douglas Gregor · 13 years ago
  58. 2aed8b8 Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself."" by Sebastian Redl · 13 years ago
  59. 1548d14 Revert "Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself." by Sebastian Redl · 13 years ago
  60. 5f688f4 Make CXXNewExpr contain only a single initialier, and not hold the used constructor itself. by Sebastian Redl · 13 years ago
  61. dfca6f5 Introduce support for template instantiation of lambda by Douglas Gregor · 13 years ago
  62. a59d20b Print NamedDecls directly to a raw_ostream where possible. by Benjamin Kramer · 13 years ago
  63. 01d0801 Introduce basic ASTs for lambda expressions. This covers: by Douglas Gregor · 13 years ago
  64. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  65. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  66. e4b9276 Added source location for the template keyword in AST template-id expressions. by Abramo Bagnara · 13 years ago
  67. 7a7ee30 Some improvements to the handling of C11 atomic types: by David Chisnall · 13 years ago
  68. a2d8669 Add assertion to char32_t that the value is valid, as suggested by Jordy Rose. by Richard Smith · 13 years ago
  69. 4debc82 Fix crash when trying to pretty-print unicode or wide string literals. by Richard Smith · 13 years ago
  70. 5e9392b Implement support for the __is_final type trait, to determine whether by Douglas Gregor · 13 years ago
  71. 381c066 Per an offline conversation with John McCall, have StmtPrinter actually print out the source expression for OpaqueValueExpr. by Ted Kremenek · 13 years ago
  72. 11cbe2a Add support for printing integer literals of type short, unsigned short, by Richard Trieu · 13 years ago
  73. 4b9c2d2 Change the AST representation of operations on Objective-C by John McCall · 13 years ago
  74. ba0513d Implement support for dependent Microsoft __if_exists/__if_not_exists by Douglas Gregor · 13 years ago
  75. b8989f2 Change operator<< for raw_ostream and NamedDecl to take a reference instead of a pointer. by Benjamin Kramer · 13 years ago
  76. 9e3c20b Silence some -Wuninitialized false positives with gcc. by Eli Friedman · 13 years ago
  77. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  78. b390921 Use APFloat::toString to print APFloats more precisely in the AST printer. Patch by Olaf Krzikalla. by Eli Friedman · 13 years ago
  79. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  80. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  81. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  82. 91a5755 Create a new expression node, SubstNonTypeTemplateParmExpr, by John McCall · 13 years ago
  83. 03e8003 Introduce a new AST node describing reference binding to temporaries. by Douglas Gregor · 13 years ago
  84. f85e193 Automatic Reference Counting. by John McCall · 13 years ago
  85. 61eee0c Add support for builtin astype: by Tanya Lattner · 13 years ago
  86. feb375d Implement the __is_trivially_copyable type trait by Sean Hunt · 14 years ago
  87. 023df37 Rename "hasTrivialConstructor" to "hasTrivialDefaultConstructor" and by Sean Hunt · 14 years ago
  88. a280bc8 Remove a few more bogus returns when the switch covers all the enumerators. by Chandler Carruth · 14 years ago
  89. e194710 Remove another default and a *completely* bogus return from a switch by Chandler Carruth · 14 years ago
  90. 98fa94d Remove the type traits UTT_IsLvalueExpr and UTT_IsRvalueExpr. by Chandler Carruth · 14 years ago
  91. 28bbe4b Parsing/AST support for Structured Exception Handling by John Wiegley · 14 years ago
  92. 21ff2e5 Implementation of Embarcadero array type traits by John Wiegley · 14 years ago
  93. 20c0da7 t/clang/type-traits by John Wiegley · 14 years ago
  94. 5526220 t/clang/expr-traits by John Wiegley · 14 years ago
  95. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 14 years ago
  96. f111d93 C1X: implement generic selections by Peter Collingbourne · 14 years ago
  97. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 14 years ago
  98. f4e3cfb Add support for the OpenCL vec_step operator, by generalising and by Peter Collingbourne · 14 years ago
  99. 813d834 Selector::getIdentifierInfoForSlot() can return NULL values, a fact by Douglas Gregor · 14 years ago
  100. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 14 years ago