1. 1f94124 [PCH] After deserializing a DeclContext, if it has external lexical decls but not by Argyrios Kyrtzidis · 12 years ago
  2. 67d45ec Serialize the 'IsConstexpr' bit of VarDecls. Fixes <rdar://problem/12328814>. by Douglas Gregor · 12 years ago
  3. 5931331 ASTWriter: Tighten up assertions when emitting a declaration name. by Benjamin Kramer · 12 years ago
  4. 8da8a66 Add the TypeSourceInfo for the lambda call operator to the lambda's by Eli Friedman · 12 years ago
  5. ffdf686 Remove an unused private field exposed by the recent LLVM_DELETED_FUNCTION changes. by Craig Topper · 12 years ago
  6. f56faa0 Use LLVM_DELETED_FUNCTION in place of 'DO NOT IMPLEMENT' comments. by Dmitri Gribenko · 12 years ago
  7. b3b6c22 Fix abbreviation for CharacterLiteral in AST serialization. PR13806. by Eli Friedman · 12 years ago
  8. 9a4db03 PR13811: Add a FunctionParmPackExpr node to handle references to function by Richard Smith · 12 years ago
  9. 73c87d0 [PCH] Add a null check to avoid crashing. by Argyrios Kyrtzidis · 12 years ago
  10. 6964b3f PR9023: A template template parameter whose template parameter list contains an by Richard Smith · 12 years ago
  11. 568ba87 Revert r163083 per chandlerc's request. by Joao Matos · 12 years ago
  12. 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
  13. 17d35c3 Normalize line endings of r163013 (part 2). by Joao Matos · 12 years ago
  14. 6666ed4 Improved MSVC __interface support by adding first class support for it, instead of aliasing to "struct" which had some incorrect behaviour. Patch by David Robins. by Joao Matos · 12 years ago
  15. a6c66ce Change the representation of builtin functions in the AST by Eli Friedman · 12 years ago
  16. 8a64bb5 Keep history of macro definitions and #undefs by Alexander Kornienko · 12 years ago
  17. 5c7f594 [ms-inline asm] Rename getClobber to getClobberStringLiteral. No functional by Chad Rosier · 12 years ago
  18. df5faf5 [ms-inline asm] As part of a larger refactoring, rename AsmStmt to GCCAsmStmt. by Chad Rosier · 12 years ago
  19. cd518a0 [ms-inline asm] Update the AST Reader/Writer for MS-style inline asms. by Chad Rosier · 12 years ago
  20. 1ddbd89 Fix a few -Wdocumentation warnings. by Dmitri Gribenko · 12 years ago
  21. d48bcb2 Reduce duplicated hash map lookups. by Benjamin Kramer · 12 years ago
  22. df4ee10 [ms-inline asm] Remove old cruft now that MS-style asms their own code path. by Chad Rosier · 12 years ago
  23. 9fbf327 Remove trailing return flag from FunctionTypeLoc, since we now carry that by Richard Smith · 12 years ago
  24. 11abf2a clang/lib: [CMake] Update tblgen'd dependencies. by NAKAMURA Takumi · 12 years ago
  25. 866abce clang/lib: [CMake] Reformat, alphabetize lists. by NAKAMURA Takumi · 12 years ago
  26. b9d0b76 Final piece of core issue 1330: delay computing the exception specification of by Richard Smith · 12 years ago
  27. ffb0c3a Remove HasSynthBitfield and all callers/writers/etc. Also remove by Eric Christopher · 12 years ago
  28. e3f470a Stop instantiating a class if we hit a static_assert failure. Also, if the by Richard Smith · 12 years ago
  29. ff39896 Introduce a flag in SourceManager to treat non-system source files by Argyrios Kyrtzidis · 12 years ago
  30. 5047024 Silence unused variable warning in -Asserts build by Matt Beaumont-Gay · 12 years ago
  31. 4990890 Inline storage of attributes in AttributedStmt. by Alexander Kornienko · 12 years ago
  32. 811c820 Don't store pointers into a std::vector (RawCommentList::Comments). Although by Dmitri Gribenko · 12 years ago
  33. 8d3ba23 Implement AST classes for comments, a real parser for Doxygen comments and a by Dmitri Gribenko · 12 years ago
  34. 471c8b4 Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. by Benjamin Kramer · 12 years ago
  35. 7518b37 [PCH] Make sure that all newly introduced visible decls in a DeclContext by Argyrios Kyrtzidis · 12 years ago
  36. fb40e3f PR13189: va_list broken with precompiled headers by Meador Inge · 12 years ago
  37. b0d8671 Remove a goofy CMake hack and use the standard CMake facilities to by Chandler Carruth · 12 years ago
  38. 13691bb Fix a warning on a fully covered switch with a default: by Chandler Carruth · 12 years ago
  39. 260611a Restructure how the driver communicates information about the by John McCall · 12 years ago
  40. da01f62 Add the PCH file name to the message about not being able to read the PCH. by Kaelyn Uhrain · 12 years ago
  41. aa0cd85 Structured comment parsing, first step. by Dmitri Gribenko · 12 years ago
  42. c5613b2 Explicitly build __builtin_va_list. by Meador Inge · 12 years ago
  43. a0cff72 [AST/libclang] Fix the selector locations that are reported for a by Argyrios Kyrtzidis · 12 years ago
  44. 8cd64b4 Etch out the code path for MS-style inline assembly. by Chad Rosier · 12 years ago
  45. d3861ce Remove CXXRecordDecl flags which are unused after r158289. by Richard Smith · 12 years ago
  46. ca52330 PR13064: Store whether an in-class initializer uses direct or copy by Richard Smith · 12 years ago
  47. 47d9de6 Switch LineTableInfo to use FileID instead of int for file references, by Douglas Gregor · 12 years ago
  48. 8552437 Plug a long standing memory leak in TemplateArgument. by Benjamin Kramer · 12 years ago
  49. 581deb3 Revert Decl's iterators back to pointer value_type rather than reference value_type by David Blaikie · 12 years ago
  50. facde17 Remove unused private member variables found by clang's new -Wunused-private-field. by Benjamin Kramer · 12 years ago
  51. dec1776 Address minor FIXME in RedeclLink to contain a PointerIntPair instead of derive from it. by David Blaikie · 12 years ago
  52. d0792de Fix ASTReader handling of ImportDecls, from Meador Inge! by Douglas Gregor · 12 years ago
  53. 7d24e28 [libclang/AST] Index references of protocols in "@protocol(...)" syntax. by Argyrios Kyrtzidis · 12 years ago
  54. e15db6f [AST/libclang] Speed up clang_getOverriddenCursors() considerably by reserving a bit by Argyrios Kyrtzidis · 12 years ago
  55. d079abf A union can have a constexpr defaulted default constructor, if it has an by Richard Smith · 12 years ago
  56. 12dcc64 [PCH] Use DenseMap instead of std::map to keep track of SwitchCases. by Argyrios Kyrtzidis · 12 years ago
  57. b88acb0 [PCH] Really, pinky swear, fix for PR12689 by Argyrios Kyrtzidis · 12 years ago
  58. d964d63 Fix non-deterministic iteration order when walking the specializations by Chandler Carruth · 12 years ago
  59. d54dff0 [PCH] When validating that the files coming from PCH did not change, also by Argyrios Kyrtzidis · 12 years ago
  60. 67835c1 [PCH] Clear switch case IDs when deserializing a objc method body. by Argyrios Kyrtzidis · 12 years ago
  61. 4548ca2 Store the source range of a CXXOperatorCallExpr in the Expr object instead of by Argyrios Kyrtzidis · 12 years ago
  62. 262bc18 Remove the ref/value inconsistency in filter_decl_iterator. by David Blaikie · 12 years ago
  63. 394e539 [PCH] In ASTReader::completeVisibleDeclsMap, after we loaded all visible decls, mark by Argyrios Kyrtzidis · 12 years ago
  64. 7bb698a Fix serialization of uninstantiated exception specifications. Patch by Li Kan, by Richard Smith · 12 years ago
  65. eb382ec Implements boxed expressions for Objective-C. <rdar://problem/10194391> by Patrick Beard · 12 years ago
  66. b346d2f Implement the all_lookups_iterator for PCH as a follow-up to r153970. This by Nick Lewycky · 12 years ago
  67. b1758c6 Use forward declarations for ASTDeclContextNameLookupTable and add a missing delete. by Benjamin Kramer · 12 years ago
  68. 534986f Add an AttributedStmt type to represent a statement with C++11 attributes by Richard Smith · 12 years ago
  69. b889614 Serialize and deserialize some missing bits from BlockDecl. by John McCall · 12 years ago
  70. e1b2abc AtomicExpr: make ASTStmtReader a friend and remove setters. Also fix saving by Richard Smith · 12 years ago
  71. 6c656c3 Remove dead assignment to local variable. by Ted Kremenek · 12 years ago
  72. b0d06e2 Eliminate obvious use-after-free. Fixes PR12433 / <rdar://problem/11168333>. by Douglas Gregor · 12 years ago
  73. b085d89 Add info to ObjCPropertyRefExpr to indicate whether the dot syntax property by Argyrios Kyrtzidis · 12 years ago
  74. a8e0b97 Canonicalize the declaration we write to a PCH file for an by Douglas Gregor · 12 years ago
  75. 643586f [PCH] When we are replacing a decl in a chained PCH that is also a DeclContext, by Argyrios Kyrtzidis · 12 years ago
  76. c5d3e80 Fix Objective-C compilation-time performance regression introduced in r152608. by Richard Smith · 12 years ago
  77. f1c66b4 Instantiating a class template should not instantiate the definition of any by Richard Smith · 12 years ago
  78. 65daef1 It never makes sense to do a lookup into a LinkageSpecDecl, so assert that we by Nick Lewycky · 12 years ago
  79. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  80. f4b88a4 Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to by John McCall · 12 years ago
  81. ba50b3e Allow serializing an invalid ParmVarDecl and don't set access to public for by Argyrios Kyrtzidis · 12 years ago
  82. 29f98b4 [libclang] Fix a crash when serializing a preprocessing record that contains by Argyrios Kyrtzidis · 12 years ago
  83. 9fcce65 AST representation for user-defined literals, plus just enough of semantic by Richard Smith · 12 years ago
  84. bef35c9 [PCH] Mark a PCH file with a flag to indicate if the serialized AST had by Argyrios Kyrtzidis · 12 years ago
  85. ebcb57a Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, by Ted Kremenek · 12 years ago
  86. c6c5452 [preprocessor] Enhance PreprocessingRecord to keep track of locations of conditional directives. by Argyrios Kyrtzidis · 12 years ago
  87. b2c60b0 Move llvm/ADT/SaveAndRestore.h -> llvm/Support/SaveAndRestore.h. by Argyrios Kyrtzidis · 12 years ago
  88. 77bfb8b objective-c: provide fixit hint when atomic property does not by Fariborz Jahanian · 12 years ago
  89. c52d9057 ASTWriter: Cache some DenseMaps we use repeatedly. by Daniel Dunbar · 12 years ago
  90. d45d361 Move "clang/Analysis/Support/SaveAndRestore.h" to "llvm/ADT/SaveAndRestore.h" by Argyrios Kyrtzidis · 12 years ago
  91. 1b1a507 Serialize InitListExpr's initializesStdInitializerList bit, so it's not left uninitialized. by Benjamin Kramer · 12 years ago
  92. dfefb84 Teach CXXRecordDecl::hasIrrelevantDestructor to check the base classes and by Richard Smith · 12 years ago
  93. e1d4330 Don't record nested macro expansions in the preprocessing record, by Argyrios Kyrtzidis · 12 years ago
  94. 69015c2 Change the text of a FIXME. by Argyrios Kyrtzidis · 12 years ago
  95. 4ca8ac2 Implement a new type trait __is_trivially_constructible(T, Args...) by Douglas Gregor · 12 years ago
  96. 8cceefa [PCH] When keeping track of top-level decls for "targeted deserialization" by Argyrios Kyrtzidis · 12 years ago
  97. ac1303e Generate an AST for the conversion from a lambda closure type to a by Douglas Gregor · 12 years ago
  98. f4b7de1 Improve our handling of lambda expressions that occur within default by Douglas Gregor · 12 years ago
  99. ccc1b5e Implement name mangling for lambda expressions that occur within the by Douglas Gregor · 12 years ago
  100. a4c29b6 [PCH] Recover gracefully if the ASTReader detects that a file is different by Argyrios Kyrtzidis · 12 years ago