1. 4967a71 Update aosp/master Clang for rebase to r275480 by Pirama Arumuga Nainar · 8 years ago
  2. 87d948e Update aosp/master clang for rebase to r256229 by Pirama Arumuga Nainar · 8 years ago
  3. b6d6993 Update aosp/master clang for rebase to r239765 by Pirama Arumuga Nainar · 9 years ago
  4. 3ea9e33 Update aosp/master clang for rebase to r233350 by Pirama Arumuga Nainar · 9 years ago
  5. 176edba Update aosp/master Clang for rebase to r222490. by Stephen Hines · 10 years ago
  6. c568f1e Update Clang for rebase to r212749. by Stephen Hines · 10 years ago
  7. 6bcf27b Update Clang for 3.5 rebase (r209713). by Stephen Hines · 10 years ago
  8. 651f13c Updated to Clang 3.5a. by Stephen Hines · 10 years ago
  9. faea5bf Corrected comment about MS prgama warning. by John Thompson · 11 years ago
  10. 72c26c0 Accept #pragma warning(push, 0) without warning by Reid Kleckner · 11 years ago
  11. 48b80c7 PR17359: Fix off-by-one OOB on _Pragma("") and an unescaping bug by Reid Kleckner · 11 years ago
  12. 2ee042d Lex and ignore Microsoft's #pragma warning(...) by Reid Kleckner · 11 years ago
  13. 0189fd6 Added preproc callback for pragma directives. by Enea Zaffanella · 11 years ago
  14. ad5f833 Lex: Cleanup whitespace in PragmaRegionHandler by David Majnemer · 11 years ago
  15. bc3f628 This patch adds new private headers to the module map. Private by Lawrence Crowl · 11 years ago
  16. 7adf79a Move PragmaCommentHandler to lib/Parse in preparation for calling Sema by Reid Kleckner · 11 years ago
  17. 269cc2d Lex: Fix quadratic behavior when unescaping _Pragma strings. by Benjamin Kramer · 11 years ago
  18. 142b35e Fix off-by-one error in #pragma clang system_header. by Jordan Rose · 11 years ago
  19. 076eea2 Implemented #pragma GCC warning/error in the same mould as #pragma message. by Andy Gibbs · 11 years ago
  20. 85192c7 Parser support for #pragma clang __debug captured by Tareq A. Siraj · 11 years ago
  21. c56fff7 [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 11 years ago
  22. 0b91cc4 Handle _Pragma on a u8, u, or U string literal per the C11 specification. Also by Richard Smith · 11 years ago
  23. 9818a1d [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 11 years ago
  24. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  25. e74dc19 Comments: no need to escape any characters in \code ... \endcode. by Dmitri Gribenko · 12 years ago
  26. fafd101 Support for #pragma region/endregion for MSVC compatibility. Patch thanks to pravic! by Aaron Ballman · 12 years ago
  27. 97f8461 Made the "expected string literal" diagnostic more expressive by Andy Gibbs · 12 years ago
  28. 02a1768 Refactored duplicate string literal lexing code within Preprocessor, into a by Andy Gibbs · 12 years ago
  29. 6e347bc Removed an extra blank line. by Mahesha S · 12 years ago
  30. a8235d6 Rework the (de-)serialization of macros, as stored in by Douglas Gregor · 12 years ago
  31. 374b383 StringRef'ize Preprocessor::CreateString(). by Dmitri Gribenko · 12 years ago
  32. e40c423 Fixed a problem with #pragma push_macro/pop_macro implementation. by Alexander Kornienko · 12 years ago
  33. 8a64bb5 Keep history of macro definitions and #undefs by Alexander Kornienko · 12 years ago
  34. 377da4c Use LLVM_BUILTIN_TRAP instead of lame volatile int traps. by David Blaikie · 12 years ago
  35. e75d9cf Use -frewrite-includes for crash reports. by David Blaikie · 12 years ago
  36. b6e95b7 Documentation cleanup: by James Dennett · 12 years ago
  37. 6fe6a49 Disable _Pragma during HTML macro rewriting to keep from crashing. by Jordan Rose · 12 years ago
  38. 14e6455 Correct handling of _Pragma macro inside a macro argument. by Argyrios Kyrtzidis · 12 years ago
  39. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 12 years ago
  40. 99831e4 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 12 years ago
  41. 7eb7d99 Remove unused variable. by Benjamin Kramer · 12 years ago
  42. 4c55c54 Adding support for #pragma include_alias in MS compatibility mode. This implements PR 10705. by Aaron Ballman · 12 years ago
  43. 10285d9 Revert r151800, which was committed without review and has correctness issues. by Richard Smith · 12 years ago
  44. 7abe166 Implements support for #pragma include_alias in ms compatibility mode. Fixes PR10705. by Aaron Ballman · 12 years ago
  45. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 12 years ago
  46. ce52bb3 Fix a memory leak of PragmaNamespaces, rdar://10611796. by Argyrios Kyrtzidis · 12 years ago
  47. eee242f Make the loading of information attached to an IdentifierInfo from an by Douglas Gregor · 13 years ago
  48. 8dfac0b Add explicit attributes to mark functions as having had their by John McCall · 13 years ago
  49. b219cfc Switch assert(0/false) llvm_unreachable. by David Blaikie · 13 years ago
  50. 62ec1f2 Rename LangOptions::Microsoft to LangOptions::MicrosoftExt to make it clear that this flag must be used only for Microsoft extensions and not emulation; to avoid confusion with the new LangOptions::MicrosoftMode flag. by Francois Pichet · 13 years ago
  51. fba18aa Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 13 years ago
  52. f84139a Change err_pp_file_not_found back to an Error; when it's a Warning, we suppress it in system headers. And it is not a good idea to suppress it in system headers. (This was originally changed in r134996 to implement -MG.) by Eli Friedman · 13 years ago
  53. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  54. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  55. bb52786 Implement -MG. Fixes PR9613 by Peter Collingbourne · 13 years ago
  56. c09ce12 Copy diagnostic pragmas to the preprocessed output, from Richard Osborne! by Douglas Gregor · 13 years ago
  57. 65aa688 Make more use of llvm::StringRef in various APIs. In particular, don't by Jay Foad · 13 years ago
  58. 1066c6c Disable MSVC warning about runtime stack overflow for DebugOverflowStack. by Francois Pichet · 13 years ago
  59. 477aab6 A StringRef-ication of the DiagnosticIDs API and internals. by Argyrios Kyrtzidis · 13 years ago
  60. 784c257 Invoke the FileChanged callback before pushing the linemarker for a system by Chris Lattner · 13 years ago
  61. 7412494 To be able to replay compilations we need to accurately remodel how by Manuel Klimek · 13 years ago
  62. b5142bb Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 13 years ago
  63. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 13 years ago
  64. a5ef584 Reimplement __pragma support using a TokenLexer by Peter Collingbourne · 13 years ago
  65. b2eb53d Make TokenLexer capable of storing preprocessor directive tokens by Peter Collingbourne · 13 years ago
  66. 321b817 Move support for "#pragma STDC FP_CONTRACT" to Parser; add Sema actions by Peter Collingbourne · 13 years ago
  67. 9d3f5f7 Make LexOnOffSwitch a Preprocessor member function by Peter Collingbourne · 13 years ago
  68. c4bf2b9 Introduced raw_identifier token kind. by Abramo Bagnara · 14 years ago
  69. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 14 years ago
  70. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  71. b275e3d Fix typo in comment. by Ted Kremenek · 14 years ago
  72. d83fc54 Fix coding standard mistake from my last commit. by Michael J. Spencer · 14 years ago
  73. 301669b Lexer: Implement GCC's version of pragma message. by Michael J. Spencer · 14 years ago
  74. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  75. 96de259 fix 7320: we can't delete a trailing space if it doesn't exist. by Chris Lattner · 14 years ago
  76. 6493a4d Now that GCC will have #pragma push/pop (in GCC 4.6), allow the by Douglas Gregor · 14 years ago
  77. 3da92a9 Complain if a __pragma isn't terminated. by John McCall · 14 years ago
  78. 1ef8a2e Add support for Microsoft's __pragma in the preprocessor. by John McCall · 14 years ago
  79. ff759a6 CrashRecovery: Add #pragma clang __debug handle_crash, useful when debugging by Daniel Dunbar · 14 years ago
  80. 5505413 Lex: Add #pragma clang __debug {llvm_fatal_error, llvm_unreachable}, for testing by Daniel Dunbar · 14 years ago
  81. f47724b Implement #pragma push_macro, patch by Francois Pichet! by Chris Lattner · 14 years ago
  82. 5595b2e Transcribe clattner email to SVN. by Daniel Dunbar · 14 years ago
  83. d7ac856 Change #pragma crash to segv, instead of abort. by Daniel Dunbar · 14 years ago
  84. abf7b72 Preprocessor: Add support for '#pragma clang __debug crash' and '#pragma clang by Daniel Dunbar · 14 years ago
  85. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  86. abfe094 Implement support for #pragma message, patch by Michael Spencer! by Chris Lattner · 14 years ago
  87. c72cc50 Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. by Daniel Dunbar · 14 years ago
  88. 453091c Audit all Preprocessor::getSpelling() callers, improving failure by Douglas Gregor · 14 years ago
  89. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 14 years ago
  90. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 14 years ago
  91. a139481 stringref'ize a bunch of filename handling logic. Much by Chris Lattner · 14 years ago
  92. 804f652 implement rdar://7520940: published framework headers should by Chris Lattner · 14 years ago
  93. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  94. 04ae2df add push/pop semantics for diagnostics. Patch by Louis Gerbarg! by Chris Lattner · 15 years ago
  95. 2e22253 Add support for retrieving the Doxygen comment associated with a given by Douglas Gregor · 15 years ago
  96. 027cff6 Fix a crash that can occur when a #pragma handler eats to the end of the by Chris Lattner · 15 years ago
  97. 6896a37 Fix #pragma GCC system_header by making it insert a virtual linemarker into by Chris Lattner · 15 years ago
  98. e8fa06e accept "#pragma clang foo" where we accept "#pragma GCC foo". by Chris Lattner · 15 years ago
  99. edaf877 implement "#pragma GCC diagnostic". Besides being a nice feature, this by Chris Lattner · 15 years ago
  100. 4d8aac3 Warn about uses of #pragma STDC FENV_ACCESS ON, since we don't by Chris Lattner · 15 years ago