1. 1a4761e Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 14 years ago
  2. 4b7cac5 Note that we'll need to handle __include_macros specially in the module loader by Douglas Gregor · 14 years ago
  3. 8cfbe6a Move the module auto-import logic after the logic that allows a by Douglas Gregor · 14 years ago
  4. edee969 Trivial indentation fix for the code I just committed by Douglas Gregor · 14 years ago
  5. e3a8256 Introduce an opt-in warning indicating when the compiler is treating by Douglas Gregor · 14 years ago
  6. 3d3589d Switch the module-loading interfaces and parser from a simple by Douglas Gregor · 14 years ago
  7. 1c2e933 Allow preprocessor callbacks to recover from a "file not found" error, by Douglas Gregor · 14 years ago
  8. c69c42e When making a suggestion regarding which module to load rather than by Douglas Gregor · 14 years ago
  9. aa93a87 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 14 years ago
  10. 661a996 -Wc++98-compat warnings for the lexer. by Richard Smith · 14 years ago
  11. 158ebfb A couple random preprocessor changes that got ported from C99 to C++11. by Eli Friedman · 14 years ago
  12. 8dfac0b Add explicit attributes to mark functions as having had their by John McCall · 14 years ago
  13. 6b4ff04 Introduce a callback to PPCallbacks for lines skipped by the preprocessor. by Argyrios Kyrtzidis · 14 years ago
  14. d6471f7 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
  15. fba18aa Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 14 years ago
  16. 7d10087 Support code-completion for C++ inline methods and ObjC buffering methods. by Argyrios Kyrtzidis · 14 years ago
  17. 7143aab Modules hide macro definitions by default, so that silly things like by Douglas Gregor · 14 years ago
  18. 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 · 14 years ago
  19. 70c7b10c Don't warn on varaidic macros in C++0x mode. by Eli Friedman · 14 years ago
  20. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 14 years ago
  21. e7b2b6e Rename getDecomposedInstantiationLoc to getDecomposedExpansionLoc. by Chandler Carruth · 14 years ago
  22. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  23. bb52786 Implement -MG. Fixes PR9613 by Peter Collingbourne · 14 years ago
  24. 1f8dcfc Don't warn for unused macro when undef'ing it, if it comes from an included file. rdar://9745065 by Argyrios Kyrtzidis · 14 years ago
  25. d57b7ff Replace an unreachable error path with an assert by Peter Collingbourne · 14 years ago
  26. 65aa688 Make more use of llvm::StringRef in various APIs. In particular, don't by Jay Foad · 14 years ago
  27. e26224e Only ignore extra tokens after #else if we skip it, otherwise warn. Fixes rdar://9475098. by Argyrios Kyrtzidis · 14 years ago
  28. 7412494 To be able to replay compilations we need to accurately remodel how by Manuel Klimek · 14 years ago
  29. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 14 years ago
  30. b5142bb Add a 'RawPath' parameter to the PPCallbacks interface. This allows by Chandler Carruth · 14 years ago
  31. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 14 years ago
  32. a5ef584 Reimplement __pragma support using a TokenLexer by Peter Collingbourne · 14 years ago
  33. b2eb53d Make TokenLexer capable of storing preprocessor directive tokens by Peter Collingbourne · 14 years ago
  34. a33e050 When redefining a macro don't warn twice if it's not used and don't warn for duplicate by Argyrios Kyrtzidis · 15 years ago
  35. ba3ca52 fix rdar://8823139, a crash on a comment in a preprocessed .s file by Chris Lattner · 15 years ago
  36. 3a1a874 Fix PR8654, ensuring each branch of an #if, #elif, #else, ... chain by Chandler Carruth · 15 years ago
  37. c6ed729 Change all self assignments X=X to (void)X, so that we can turn on a by Jeffrey Yasskin · 15 years ago
  38. c4bf2b9 Introduced raw_identifier token kind. by Abramo Bagnara · 15 years ago
  39. 0827408 Fix diagnostic pragmas. by Argyrios Kyrtzidis · 15 years ago
  40. 25bb03b Don't crash when code-completing after "#include <". It would be far by Douglas Gregor · 15 years ago
  41. 2aa9267 Several PPCallbacks take an SourceLocation + IdentifierInfo, rather by Craig Silverstein · 15 years ago
  42. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 15 years ago
  43. 08985b9 Add PPCallbacks for #if/#ifdef/etc. by Craig Silverstein · 15 years ago
  44. ecdcb88 Extend the preprocessing record and libclang with support for by Douglas Gregor · 15 years ago
  45. 9714a23 Really^2 fix <rdar://problem/8361834>, this time without crashing. by Ted Kremenek · 15 years ago
  46. 52a4ff6 Revert most of r116862. It isn't quite the right fix for a memory leak in Preprocessor. by Ted Kremenek · 15 years ago
  47. ea35f77 Really fix: <rdar://problem/8361834> MacroInfo::AddTokenToBody() leaks memory by Ted Kremenek · 15 years ago
  48. af8fa25 Simplify lifetime management of MacroInfo objects in Preprocessor by having the Preprocessor maintain them in a linked by Ted Kremenek · 15 years ago
  49. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 15 years ago
  50. 1fbb447 Implement preprocessor code completion where a macro name is expected, by Douglas Gregor · 15 years ago
  51. f44e854 Introduce basic code-completion support for preprocessor directives, by Douglas Gregor · 15 years ago
  52. a7e6845 Detabify. by Eli Friedman · 15 years ago
  53. 2c1ab90 no need to pass bumppointer allocator into macroinfo::destroy by Chris Lattner · 15 years ago
  54. f47724b Implement #pragma push_macro, patch by Francois Pichet! by Chris Lattner · 15 years ago
  55. 2d474ba Don't emit end-of-file diagnostics like "unterminated conditional" or by Douglas Gregor · 15 years ago
  56. 10fe93d Revert r110440, the fix for PR4897. Chris claims to have a better way. by Douglas Gregor · 15 years ago
  57. 2f05449 Push location through the MacroUndefined PPCallback and use it to print #undefs in -dD mode. (PR7818) by Benjamin Kramer · 15 years ago
  58. 91db30a Fix the #include search path when reading from stdin, from Jon Simons! by Douglas Gregor · 15 years ago
  59. e127a0d push some source location information down through the compiler, by Chris Lattner · 15 years ago
  60. 6fbe3eb add a PPCallback handler for a skipped #include, patch by Zhanyong Wan! by Chris Lattner · 15 years ago
  61. 86d0ef7 Improve line marker directive locations, patch by Jordy Rose by Chris Lattner · 15 years ago
  62. 849b243 Reinstate my CodeModificationHint -> FixItHint renaming patch, without by Douglas Gregor · 15 years ago
  63. 275313c Revert r100008, which inexplicably breaks the clang-i686-darwin10 builder by Douglas Gregor · 15 years ago
  64. d0ebe08 Rename CodeModificationHint to FixItHint, since we've been using the by Douglas Gregor · 15 years ago
  65. 453091c Audit all Preprocessor::getSpelling() callers, improving failure by Douglas Gregor · 15 years ago
  66. a543016 Audit all callers of SourceManager::getCharacterData(); update some of by Douglas Gregor · 15 years ago
  67. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  68. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 15 years ago
  69. 13d283d Fix PR6282: the include guard optimization cannot happen if the by Chris Lattner · 15 years ago
  70. f45b646 revert my patch for rdar://7520940 that warns when a published header by Chris Lattner · 16 years ago
  71. 2c6b193 simplify the code for skipping in a #if 0 block. The CurLexer by Chris Lattner · 16 years ago
  72. a139481 stringref'ize a bunch of filename handling logic. Much by Chris Lattner · 16 years ago
  73. c1abafc clarify comment. by Chris Lattner · 16 years ago
  74. 804f652 implement rdar://7520940: published framework headers should by Chris Lattner · 16 years ago
  75. b939a4e Convert to StringRef, avoid a memcpy in the common case. by Benjamin Kramer · 16 years ago
  76. 1d9c54d formatting changes. by Chris Lattner · 16 years ago
  77. 63ceaa3 Change Preprocessor::EnterSourceFile to make ErrorStr non-optional, clients should be forced to deal with error conditions. by Daniel Dunbar · 16 years ago
  78. 39d9841 pass the reason for failure up from MemoryBuffer and report it by Chris Lattner · 16 years ago
  79. 6e29014 Fix PR5633 by making the preprocessor handle the case where we can by Chris Lattner · 16 years ago
  80. a28cc09 Re-arranged some internal functions for coming __has_include changes. by John Thompson · 16 years ago
  81. e013d68 Move clients to use IdentifierInfo::getNameStart() instead of getName() by Daniel Dunbar · 16 years ago
  82. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 16 years ago
  83. 3d399a0 There is no need to value initialize this array. by Daniel Dunbar · 16 years ago
  84. 3240469 Fix a couple of bugs: by Chris Lattner · 16 years ago
  85. c25d805 In assembler-with-cpp mode, don't error on '#' (stringize) operator applied to by Daniel Dunbar · 16 years ago
  86. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
  87. 2451b52 improve MacroInfo to track the source range of the macro definition, by Chris Lattner · 16 years ago
  88. 41c1747 add a preprocessor callback function for #undef, patch by Alexei Svitkine! by Chris Lattner · 16 years ago
  89. 8fde597 Fix PR4006, incorrect handling of __VA_ARGS__ when it was the first token by Chris Lattner · 16 years ago
  90. dc8c90d more fun with line markers: the digit string is required to be interpreted by Chris Lattner · 16 years ago
  91. bc81682 second half of PR3940: #line requires simple digit sequence. by Chris Lattner · 16 years ago
  92. 6272bcf enforce requirements imposed by C90 6.8 TC1, fixing PR3919. by Chris Lattner · 16 years ago
  93. 8fe00e7 Fix PR3938 by taking into account C99 6.10p4. by Chris Lattner · 16 years ago
  94. 9cb51ce Fix two problems from PR3916, and one problem I noticed while hacking by Chris Lattner · 16 years ago
  95. 58e91d5 implement PR3940: #line numbers not fully checked by Chris Lattner · 16 years ago
  96. ab82f41 #line is allowed to have macros that expand to nothing after them. by Chris Lattner · 16 years ago
  97. 959875a Offer a fixit hint for our warning about tokens at the end of a directive: by Chris Lattner · 16 years ago
  98. 35410d5 Fix the #import / #include_next "extra tokens at end of #foo directive" by Chris Lattner · 16 years ago
  99. 8533bd5 Fix assertion failure in PTH when tokens followed a closing #endif. by Daniel Dunbar · 16 years ago
  100. f4a72b0 add a ppcallback hook for macro definitions. by Chris Lattner · 16 years ago