1. 34b41d9 Implement the C++0x deduced 'auto' feature. by Richard Smith · 14 years ago
  2. da4b7cf Add a new ObjCExceptions member variable to LangOptions. This controls whether Objective-C exceptions are enabled or not (they are by default). by Anders Carlsson · 14 years ago
  3. 57ad378 Step #2/N of __label__ support: keep pushing LabelDecl forward, by Chris Lattner · 14 years ago
  4. 56ca35d Change the representation of GNU ?: expressions to use a different expression by John McCall · 14 years ago
  5. ad8dcf4 Step #1/N of implementing support for __label__: split labels into by Chris Lattner · 14 years ago
  6. 84bccea Serialization/deserialization support for floating point #pragma by Peter Collingbourne · 14 years ago
  7. 8e3df4d Allow resolving headers from a PCH even after headers+PCH were moved to another path. by Argyrios Kyrtzidis · 14 years ago
  8. 0895d15 When reading the AST, delay loading of the redeclaration chain to avoid deeply nested calls. by Argyrios Kyrtzidis · 14 years ago
  9. 0a86d44 Add CMake dependencies so that LLVM_USED_LIBS order doesn't matter. by Jeffrey Yasskin · 14 years ago
  10. 0a48029 Rename the operation that loads a preprocessed entity from a given offset to indicate that we're loading from an offset, not an index, lest one be confused. No functionality change. by Douglas Gregor · 14 years ago
  11. 217cacc Eliminate a major performance problem with chained PCH, where we were by Douglas Gregor · 14 years ago
  12. 040a804 Implement AST/PCH chaining support for macro definitions. Previously, by Douglas Gregor · 14 years ago
  13. 9c73610 When we're writing macro definitions to an AST/PCH File, sort the by Douglas Gregor · 14 years ago
  14. cfbf1c7 Implement two related optimizations that make de-serialization of by Douglas Gregor · 14 years ago
  15. 886e160 CMake: LLVM_NO_RTTI must be obsolete now! by NAKAMURA Takumi · 14 years ago
  16. e08ce65 AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions by Peter Collingbourne · 14 years ago
  17. 14b6ba7 AST, Sema, Serialization: keep track of cudaConfigureCall by Peter Collingbourne · 14 years ago
  18. 76a4021 NonTypeTemplateParmDecl is just a DeclaratorDecl, not a VarDecl. by John McCall · 14 years ago
  19. 4800a5c Split the serialized representation for the detailed preprocessing by Douglas Gregor · 14 years ago
  20. b6c2b3f Update the writing of the block-information block in the AST file by Douglas Gregor · 14 years ago
  21. 6b5a61b A few more tweaks to the blocks AST representation: by John McCall · 14 years ago
  22. 8ef6c8c Improve our uniquing of file entries when files are re-saved or are by Douglas Gregor · 14 years ago
  23. f677ea3 Basic implementation of inherited constructors. Only generates declarations, and probably only works for very basic use cases. by Sebastian Redl · 14 years ago
  24. def0354 Implement proper (de-)serialization for explicit template argument by Douglas Gregor · 14 years ago
  25. 469a1eb An insomniac stab at making block declarations list the variables they close by John McCall · 14 years ago
  26. f9997a0 Fix a thinko where I didn't update a consistency check for by Douglas Gregor · 14 years ago
  27. 6f75550 Basic support for -mms-bitfields, from Carl Norum! by Douglas Gregor · 14 years ago
  28. b608b98 Give OpaqueValueExpr a source location, because its source location by Douglas Gregor · 14 years ago
  29. 0433116 TextDiagnosticPrinter.cpp: Show diagnostics as far as possible even with invalid PresomedLoc, instead of just silencing it. by Axel Naumann · 14 years ago
  30. 6ec278d Do a proper recursive lookup when deciding whether a class's usual by John McCall · 14 years ago
  31. c938c16 Rvalue references for *this: by Douglas Gregor · 14 years ago
  32. cb88a1f Use attributes for all the override control specifiers. by Anders Carlsson · 14 years ago
  33. faa6afd Serialize and deserialize IsMarkedFinal/IsMarkedExplicit. by Anders Carlsson · 14 years ago
  34. a97d70b Generalise support for non-inheritable attributes by Peter Collingbourne · 14 years ago
  35. c0534b6 Add IsMarkedOverride and IsMarkedFinal flags to FunctionDecl (to be used by CXXRecordDecl). by Anders Carlsson · 14 years ago
  36. 6952f1e Implement support for non-type template parameter packs whose type is by Douglas Gregor · 14 years ago
  37. f4c7371 Change QualType::getTypePtr() to return a const pointer, then change a by John McCall · 14 years ago
  38. dec0984 Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and by Jeffrey Yasskin · 14 years ago
  39. 1aee05d Introduce a new kind of TemplateName that captures a substituted by Douglas Gregor · 14 years ago
  40. b1bdced Store/retrieve -fshort-enums for PCH, fixes rdar://8854933. by Argyrios Kyrtzidis · 14 years ago
  41. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  42. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 14 years ago
  43. 67fd125 Teach PackExpansionExpr to keep track of the number of pack expansions by Douglas Gregor · 14 years ago
  44. 3efd52c Properly propagate #pragma diagnostic mappings from PCH but not command-line warning flags. by Argyrios Kyrtzidis · 14 years ago
  45. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 14 years ago
  46. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 14 years ago
  47. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  48. cbb6748 Renamed CXXBaseOrMemberInitializer to CXXCtorInitializer. This is both shorter, by Sean Hunt · 14 years ago
  49. f84109e Update AST reader/writer to handle new AppleKext. by Fariborz Jahanian · 14 years ago
  50. 9d156a7 Introduce an AttributedType, but don't actually use it anywhere yet. by John McCall · 14 years ago
  51. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 14 years ago
  52. ba68eca Add semantic analysis for the creation of and an AST representation by Douglas Gregor · 14 years ago
  53. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 14 years ago
  54. ee8aff0 Implement the sizeof...(pack) expression to compute the length of a by Douglas Gregor · 14 years ago
  55. 3fb9e4b Implement pack expansion of base initializers, so that we can by Douglas Gregor · 14 years ago
  56. f90b27a Implement pack expansions whose pattern is a base-specifier. by Douglas Gregor · 14 years ago
  57. 20df8e7 In the latest episode of "Deserializing bugs caused by accessors" the series reached a thrilling climax when by Argyrios Kyrtzidis · 14 years ago
  58. be230c3 Implement support for pack expansions whose pattern is a non-type by Douglas Gregor · 14 years ago
  59. 3f59c97 The -fshort-wchar option causes wchar_t to become unsigned, in addition to being by Chris Lattner · 14 years ago
  60. 10738d3 Add an AST representation for non-type template parameter packs, e.g., by Douglas Gregor · 14 years ago
  61. c32647d Add -fobjc-default-synthesized-properties flag by Ted Kremenek · 14 years ago
  62. fbfd180 Replace all uses of PathV1::makeAbsolute with PathV2::fs::make_absolute. by Michael J. Spencer · 14 years ago
  63. 7536dd5 Introduce a new type, PackExpansionType, to capture types that are by Douglas Gregor · 14 years ago
  64. 256053b Replace all uses of PathV1::isAbsolute with PathV2::is_{absolute,relative}. by Michael J. Spencer · 14 years ago
  65. 4eeebc4 MemoryBuffer API update. by Michael J. Spencer · 14 years ago
  66. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  67. e23cf43 Restore r121752 without modification. by John McCall · 14 years ago
  68. 5bfe232 Pull out r121752 in case it's causing the selfhost breakage. by John McCall · 14 years ago
  69. 0e88aa7 Factor out most of the extra state in a FunctionProtoType into a separate by John McCall · 14 years ago
  70. d093722 Variadic templates: extend Type, NestedNameSpecifier, TemplateName, by Douglas Gregor · 14 years ago
  71. f40f0d5 Keep the source location of the selector in ObjCMessageExpr. by Argyrios Kyrtzidis · 14 years ago
  72. 1ab55e9 Eliminate the branching in QualType::getTypePtr() by providing a by Douglas Gregor · 14 years ago
  73. 075f8f1 Added ParenType type node. by Abramo Bagnara · 14 years ago
  74. 49f4e1c It's kindof silly that ExtQuals has an ASTContext&, and we can use that by John McCall · 14 years ago
  75. 3a321e2 Use error_code instead of std::string* for MemoryBuffer. by Michael J. Spencer · 14 years ago
  76. 8f15094 When an "inline" declaration was followed by a definition not marked 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. 6ad6f28 Type traits intrinsic implementation: __is_base_of(T, U) by Francois Pichet · 14 years ago
  79. 381d34e Re-implement caching for the linkage calculation of declarations. by Douglas Gregor · 14 years ago
  80. b5f35ba Revert r120808, my previous implementation of caching for the linkage by Douglas Gregor · 14 years ago
  81. 4765fa0 Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical by John McCall · 14 years ago
  82. 00eb3f9 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: by Francois Pichet · 14 years ago
  83. a88cefd Added struct/class syntactic info for c++0x scoped enum. by Abramo Bagnara · 14 years ago
  84. 2357207 Implement caching for the linkage and visibility calculations of declarations. by Douglas Gregor · 14 years ago
  85. 12f78a6 Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr by John McCall · 14 years ago
  86. 08a5326 Serialization: support for CUDA language extensions by Peter Collingbourne · 14 years ago
  87. 89d9980 When using a precompiled preamble with detailed preprocessing records, by Douglas Gregor · 14 years ago
  88. 414cb64 When loading a precompiled preamble, use the file ID of the by Douglas Gregor · 14 years ago
  89. 03013fa Merge System into Support. by Michael J. Spencer · 14 years ago
  90. 54353f4 Hide a bunch of symbols. by Benjamin Kramer · 14 years ago
  91. 898a061 change the 'is directory' indicator to be a null-or-not by Chris Lattner · 14 years ago
  92. d6f6111 simplify the cache miss handling code, eliminating CacheMissing. by Chris Lattner · 14 years ago
  93. 74e976b PCH files only cache successful stats. Remove the code that reads/writes by Chris Lattner · 14 years ago
  94. 10e286a rework the stat cache, pulling it out of FileManager.h into by Chris Lattner · 14 years ago
  95. 75dfb65 tidy up. Split FileManager::getBufferForFile into by Chris Lattner · 14 years ago
  96. 39b49bc now the FileManager has a FileSystemOpts ivar, stop threading by Chris Lattner · 14 years ago
  97. 6538227 remove old compatibility APIs, use StringRef versions instead. by Chris Lattner · 14 years ago
  98. 87c2e12 Major anonymous union/struct redesign. by Francois Pichet · 14 years ago
  99. 44aa1f3 Revert r119838 "Don't warn for empty 'if' body if there is a macro that expands to nothing" by Argyrios Kyrtzidis · 14 years ago
  100. a25b6a4 Don't warn for empty 'if' body if there is a macro that expands to nothing, e.g: by Argyrios Kyrtzidis · 14 years ago