1. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  2. 01ed063 Make tests use the new clang -cc1 flag. by Fariborz Jahanian · 15 years ago
  3. 5c2609a Remove this test for now, it is flaky. by Daniel Dunbar · 15 years ago
  4. 21a8bed Add a pretty horrible hack to prevent clang from crashing with inconsistent PCH by Daniel Dunbar · 15 years ago
  5. fcb91af Add test case for PR5662. by Daniel Dunbar · 15 years ago
  6. 8a90ac0 Normalize options to use '-FOO' instead of '--FOO'. by Daniel Dunbar · 15 years ago
  7. 682899d Use '-x' 'foo' instead of '-x=foo'. by Daniel Dunbar · 15 years ago
  8. 1ea5294 Fix PCH/preprocess test to be more useful, and unbreak -E mode with implicit by Daniel Dunbar · 15 years ago
  9. 4fcfde4 Eliminate &&s in tests. by Daniel Dunbar · 15 years ago
  10. e584b65 Fix tests to not depend on /dev/null existing. by Daniel Dunbar · 15 years ago
  11. f79ad5f Use %S, not `pwd`, and enable a line that *does* work. - Doug, please check. by Daniel Dunbar · 15 years ago
  12. 3502dee Revert this, we can now avoid error cascades better. by Mike Stump · 15 years ago
  13. e941d8e Revert recent change, I now have a better way to solve this (thanks Chris). by Mike Stump · 15 years ago
  14. 74bfeb3 Prep for new warning. by Mike Stump · 15 years ago
  15. 9bedef6 Fixes for a couple of things: by Argyrios Kyrtzidis · 15 years ago
  16. 14108da This patch includes a conceptually simple, but very intrusive/pervasive change. by Steve Naroff · 15 years ago
  17. c29f77b Make ASTContext explicitly keep track of the declaration for the C by Douglas Gregor · 15 years ago
  18. e650c8c Introduce the notion of "Relocatable" precompiled headers, which are built by Douglas Gregor · 15 years ago
  19. d89275b Fix PR 4489, a crash in PCH loading that occurs when loading the name by Douglas Gregor · 15 years ago
  20. ae4df62 Fix PR 4489, a PCH crash during de-serialization. by Douglas Gregor · 15 years ago
  21. b64c193 Make precompiled headers work with -E. When we're only preprocessing by Douglas Gregor · 15 years ago
  22. 5031c46 Make this test portable to non-x86 hosts, patch by Mark Cianciosa! by Chris Lattner · 15 years ago
  23. 92b059e Implement checking for macro definitions that occur on the command by Douglas Gregor · 15 years ago
  24. e721f95 Allow some differences between the predefines buffer used to build a by Douglas Gregor · 15 years ago
  25. b81c170 Add Sema::ExtVectorDecls and Sema::ObjCCategoryImpls to the PCH file. Since these vectors are very, very rarely used and, when used in headers, and even when used are relatively small, we load them eagerly. by Douglas Gregor · 15 years ago
  26. ce51488 Fix a problem with the RUN line of one of the PCH tests by Douglas Gregor · 15 years ago
  27. f0aaf7a PCH support for the global method pool (= instance and factory method by Douglas Gregor · 15 years ago
  28. 83d63c7 Add PCH support for #import. by Steve Naroff · 15 years ago
  29. 319ac89 PCH support for all of the predefined Objective-C types, such as id, by Douglas Gregor · 15 years ago
  30. 8f06f84 More PushOnScopeChain() FIXME's. by Steve Naroff · 15 years ago
  31. a7503a7 Sema::ActOnStartClassInterface(): Use PushOnScopeChains(). by Steve Naroff · 15 years ago
  32. 90cd1bb Add PCH read/write support for Objective-C Selectors. by Steve Naroff · 15 years ago
  33. 70e5a14 PCH support for Objective-C property declarations (UNTESTED!) by Douglas Gregor · 15 years ago
  34. 14c22f2 Support locally-declared external declarations in PCH files by Douglas Gregor · 15 years ago
  35. 0838ba6 Clean up and de-XFAIL-ify PCH test for external definitions by Douglas Gregor · 15 years ago
  36. 4c0e86b Support tentative definitions in precompiled headers. This isn't likely by Douglas Gregor · 15 years ago
  37. c6fa445 deserialization support for qualified interfaces by Chris Lattner · 15 years ago
  38. d7a3fcd pch support for protocol qualified id's. by Chris Lattner · 15 years ago
  39. 3a57a37 add three new objc expression types. @selector doesn't work because we have no by Chris Lattner · 15 years ago
  40. 4dcf151a implement serialization support for @encode, by Chris Lattner · 15 years ago
  41. f7830b6 rename methods.* -> objc_methods.* by Chris Lattner · 15 years ago
  42. ba48d05 Test PCH support for VLAs by Douglas Gregor · 15 years ago
  43. 0c8c455 Eliminate a FIXME in one of the PCH test cases by Douglas Gregor · 15 years ago
  44. c474152 Lazy deserialization of identifiers in PCH files fixed a problem with by Douglas Gregor · 15 years ago
  45. 668c1a4 Lazy deserialization of the declaration chains associated with by Douglas Gregor · 15 years ago
  46. b6c8c8b Explictly track tentative definitions within Sema, then hand those by Douglas Gregor · 15 years ago
  47. 53c9d8a Add pch reader/writer support for ObjCMethodDecl. by Steve Naroff · 15 years ago
  48. b3dcc74 make sure to verify that the "non pch" runs worked. by Chris Lattner · 15 years ago
  49. ad1de00 Store the type ID for __builtin_va_list in the PCH file, so that the by Douglas Gregor · 15 years ago
  50. 7297134 FunctionDecl::getBody() is getting an ASTContext argument for use in by Douglas Gregor · 15 years ago
  51. 88c9a46 Fix two embarrassing PCH bugs: by Douglas Gregor · 15 years ago
  52. cd7d5a9 PCH support for inline assembly statements. by Douglas Gregor · 15 years ago
  53. f7dac08 PCH tests for va_arg expressions. Verified that the blocks test does create a BlockDeclRefExpr by Douglas Gregor · 15 years ago
  54. 84af7c2 PCH support for blocks by Douglas Gregor · 15 years ago
  55. 6a2dd55 PCH support for GNU statement expressions by Douglas Gregor · 15 years ago
  56. 7d5c2f2 PCH support for indirect gotos and address-of-label expressions. by Douglas Gregor · 15 years ago
  57. 1de05fe PCH support for labels and goto. by Douglas Gregor · 15 years ago
  58. 84f2170 PCH support for declaration statements, and a test for PredefinedExpr by Douglas Gregor · 15 years ago
  59. 0de9d88 PCH support for return statements. by Douglas Gregor · 15 years ago
  60. 67d8249 PCH support for do-while and for loops by Douglas Gregor · 15 years ago
  61. d921cf9 PCH support for while and continue statements by Douglas Gregor · 15 years ago
  62. 025452f PCH support for the first batch of statements, including null, by Douglas Gregor · 15 years ago
  63. ba6d7e7 PCH support for CompoundLiteralExpr. This is the last C expression by Douglas Gregor · 15 years ago
  64. d077d75 PCH support for InitListExpr, DesignatedInitExpr, and ImplicitValueInitExpr. by Douglas Gregor · 15 years ago
  65. 94cd5d1 PCH support for ShuffleVectorExpr and BlockDeclRefExpr by Douglas Gregor · 15 years ago
  66. 44cae0c PCH support for TypesCompatibleExpr, ChooseExpr, and GNUNullExpr. by Douglas Gregor · 15 years ago
  67. d3c98a0 PCH support for ExtVectorElementExpr and VAArgExpr. by Douglas Gregor · 15 years ago
  68. ad90e96 PCH support for CompoundAssignOperator and ConditionalOperator by Douglas Gregor · 15 years ago
  69. cb2ca73 PCH support for ImaginaryLiteral and ArraySubscriptExpr by Douglas Gregor · 15 years ago
  70. 03f5ad9 Defer generation of tentative definitions. - PR3980. by Daniel Dunbar · 15 years ago
  71. 6d47396 PCH support for ExtQualType by Douglas Gregor · 15 years ago
  72. 68a2eb0 PCH support for declaration attributes by Douglas Gregor · 15 years ago
  73. 1f0d013 PCH support for MemberExpr and CallExpr. by Douglas Gregor · 15 years ago
  74. 673ecd6 PCH support for string literals by Douglas Gregor · 15 years ago
  75. 0b0b77f PCH support for UnaryOperator, SizeOfAlignOfExpr by Douglas Gregor · 15 years ago
  76. db600c3 PCH support for CStyleCastExpr and BinaryOperator expression kinds. by Douglas Gregor · 15 years ago
  77. c04db4f PCH support for ParenExpr by Douglas Gregor · 15 years ago
  78. 087fd53 Add PCH support for ImplicitCastExprs. This is the first expression by Douglas Gregor · 15 years ago
  79. 17fc223 Add PCH support for PredefinedExpr and FloatingLiteral expressions by Douglas Gregor · 15 years ago
  80. 0b74891 PCH support for a few very, very simple kinds of expressions. Hook up by Douglas Gregor · 15 years ago
  81. 2417ef7 Add a tricky, tricky test case for PCH that we currently don't handle. Committed with a FIXME so that we don't forget it by Douglas Gregor · 15 years ago
  82. f807fe0 When building a PCH file, don't perform end-of-translation-unit by Douglas Gregor · 15 years ago
  83. fdd0172 When writing a PCH file, keep track of all of the non-static, by Douglas Gregor · 15 years ago
  84. 3a2f7e4 PCH support for functions and their parameters. by Douglas Gregor · 15 years ago
  85. 8c70006 PCH support for record decls/types and their fields. Now that we can by Douglas Gregor · 15 years ago
  86. b4e715b Introduce PCH (de-)serialization for most compound types, excluding by Douglas Gregor · 15 years ago
  87. 0a2b45e Add PCH support for enumerations and enumerators. by Douglas Gregor · 15 years ago
  88. bd94500 Include the SourceManager's line table in the PCH file. We can now by Douglas Gregor · 15 years ago
  89. c1f9d82 implement the microsoft/gnu "__COUNTER__" macro: rdar://4329310 by Chris Lattner · 15 years ago
  90. 7356a31 now that we have an identifier table in the PCH file, finish hooking up by Chris Lattner · 15 years ago
  91. 285d03f test this in non-pch mode as well as in pch mode. by Chris Lattner · 15 years ago
  92. 531cc83 do a dance with predefines, and finally enable reading of macros from by Chris Lattner · 15 years ago
  93. 8038d51 Various minor fixes to PCH reading and writing, with general by Douglas Gregor · 15 years ago
  94. 14f7900 PCH serialization/deserialization of the source manager. With this by Douglas Gregor · 15 years ago
  95. 2cf2634 Implementation of pre-compiled headers (PCH) based on lazy by Douglas Gregor · 15 years ago