1. cf2c2e9 Preprocessor: don't keep comments under -traditional-cpp. by Jordan Rose · 12 years ago
  2. c515978 [preprocessor] Use MacroDirective in the preprocessor callbacks to make available the by Argyrios Kyrtzidis · 12 years ago
  3. 6aad4a3 Preprocessor: preserve whitespace in -traditional-cpp mode. by Jordan Rose · 12 years ago
  4. 9818a1d [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 12 years ago
  5. 3f6f51e Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 12 years ago
  6. 43bb45d Fix the indentation of the first line of preprocessor output by Hal Finkel · 12 years ago
  7. b395847 Constify argument of Preprocessor::getMacroInfoHistory and propagate to by Dmitri Gribenko · 12 years ago
  8. 086cc83 Make sure clang puts tokens from different files on separate lines in "-E -P" mode. <rdar://problem/12774044> by Eli Friedman · 12 years ago
  9. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  10. 2a9be3e CPP Output: Do not emit an enter file marker for the main file. by Daniel Dunbar · 12 years ago
  11. 8a64bb5 Keep history of macro definitions and #undefs by Alexander Kornienko · 12 years ago
  12. 7094dee Add missing cctype includes. by Joerg Sonnenberger · 12 years ago
  13. 0cdd1fe [-E] Emit a rewritten _Pragma on its own line. by Jordan Rose · 12 years ago
  14. 4e4d084 Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 13 years ago
  15. d7a3e2c Revert my patches which removed Diagnostic.h includes by moving some operator overloads out of line. by Benjamin Kramer · 13 years ago
  16. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  17. fdd1560 Remove Diagnostic.h include from Preprocessor.h. by Benjamin Kramer · 13 years ago
  18. 561d3ab Remove unnecessary default cases in switches over enums. by David Blaikie · 13 years ago
  19. 1770e0d remove unneeded config.h includes by Dylan Noblesmith · 13 years ago
  20. c892c5f For the FileChanged Preprocessor callback, when exiting a file, pass its FileID. by Argyrios Kyrtzidis · 13 years ago
  21. 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
  22. a77c031 Rename getInstantiationColumnNumber to getExpansionColumnNumber in both by Chandler Carruth · 13 years ago
  23. 5f9e272 remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 13 years ago
  24. 9f79a1f Update the remaining comments in Frontend to 'expansion'. by Chandler Carruth · 13 years ago
  25. c09ce12 Copy diagnostic pragmas to the preprocessed output, from Richard Osborne! by Douglas Gregor · 13 years ago
  26. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 14 years ago
  27. eef63e0 Frontend: Factor out header include dumping (-H) into its own preprocessor by Daniel Dunbar · 14 years ago
  28. 2aa9267 Several PPCallbacks take an SourceLocation + IdentifierInfo, rather by Craig Silverstein · 14 years ago
  29. cb7b1e1 Make sure to always check the result of by Douglas Gregor · 14 years ago
  30. 1397399 make sure #pragma clang is treated the same way as #pragma gcc in -E mode, by Chris Lattner · 14 years ago
  31. 2346513 Handle '#line' in '-E' that has an empty file name. Fixes <rdar://problem/8439412>. by Ted Kremenek · 14 years ago
  32. fe6834a Make sure we're producing a newline in the preprocessed output before by Douglas Gregor · 14 years ago
  33. 80c60f7 When we parse a pragma, keep track of how that pragma was originally by Douglas Gregor · 14 years ago
  34. 4566d1a Frontend/-H: Add comment on why I used a temporary string here. by Daniel Dunbar · 14 years ago
  35. f7c16d9 Frontend: Add basic -H support. by Daniel Dunbar · 14 years ago
  36. 2f05449 Push location through the MacroUndefined PPCallback and use it to print #undefs in -dD mode. (PR7818) by Benjamin Kramer · 14 years ago
  37. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  38. abfe094 Implement support for #pragma message, patch by Michael Spencer! by Chris Lattner · 14 years ago
  39. c54539c fix the various buildbot failures by ensuring that tokens are really completely initialized. by Chris Lattner · 14 years ago
  40. 90db74c fix an uninitialized variable, patch by Michael Spencer! by Chris Lattner · 14 years ago
  41. 6133aeb fix PR7360: -P mode turns off line markers, but not blank space. by Chris Lattner · 14 years ago
  42. c72cc50 Preprocessor: Ignore unknown pragmas in -E -dM and -Eonly modes. by Daniel Dunbar · 14 years ago
  43. e127a0d push some source location information down through the compiler, by Chris Lattner · 14 years ago
  44. 8ed4ff6 Remove this hard-coded buffer size. In some basic experiments preprocessing by Dan Gohman · 14 years ago
  45. 86d0ef7 Improve line marker directive locations, patch by Jordy Rose by Chris Lattner · 14 years ago
  46. 8877321 make the token paste avoidance logic turn "..." into ".. ." instead of ". . ." by Chris Lattner · 14 years ago
  47. df72140 cache the PP's SourceManager. by Chris Lattner · 14 years ago
  48. 88aae91 make the preprocessor listen to linemarker directives in -E mode, by Chris Lattner · 14 years ago
  49. dbf8ee6 Entering the main source file in the preprocessor can fail if the by Douglas Gregor · 15 years ago
  50. 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
  51. a5d10c4 Rename to addPPCallbacks since we're effectively adding a callback and maybe chaining it to an existing one by Kovarththanan Rajaratnam · 15 years ago
  52. e396007 Revert 97324. Chris says this cleanup could hurt -E performance. by Benjamin Kramer · 15 years ago
  53. 8caa6c5 Simplify code. by Benjamin Kramer · 15 years ago
  54. ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 15 years ago
  55. 3ff2a4b Avoid an instantiation of std::sort. by Benjamin Kramer · 15 years ago
  56. 13d5558 Neil points out that this could be simplified, do it. by Chris Lattner · 15 years ago
  57. 807b93e fix -dM with variadic macros, PR5699 by Chris Lattner · 15 years ago
  58. f744934 some code cleanup. by Chris Lattner · 15 years ago
  59. d76fbda Integrate the following from the 'objective-rewrite' branch: by Steve Naroff · 15 years ago
  60. 29cf746 Add PreprocessorOutputOptions to CompilerInvocation, and move initialization to by Daniel Dunbar · 15 years ago
  61. 775bee7 Add PreprocessorOutputOptions, for things like -dM, -C, -CC which control -E by Daniel Dunbar · 15 years ago
  62. 3e27c01 Fix buffer overflow in PrintMacroDefinition() by inverting the check to see if the target buffer needs to be resized. Fixes <rdar://problem/7255377>. by Ted Kremenek · 15 years ago
  63. 01eb9b9 PR5218: Replace IdentifierInfo::getName with StringRef version, now that clients by Daniel Dunbar · 15 years ago
  64. 5ffe14c Move misc clients to IdentifierInfo StringRef API. by Daniel Dunbar · 15 years ago
  65. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  66. ed2d7c4 no really, add the lines :) by Chris Lattner · 15 years ago
  67. 3ee211f Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 15 years ago
  68. 3e753e2 PR4288: Make -dD (dump macros with preprocessed source) play nicely with by Eli Friedman · 15 years ago
  69. beaaccd Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 15 years ago
  70. ac8d629 Clean up some unnecessary includes. by Eli Friedman · 15 years ago
  71. b09f6e1 Move clang-cc.h to lib/Frontend/Utils.h, and move the associated .cpp by Eli Friedman · 15 years ago[Renamed (99%) from tools/clang-cc/PrintPreprocessedOutput.cpp]
  72. 12d3b1d Move options for -E mode from PrintPreprocessedOutput.cpp to clang-cc.cpp. by Eli Friedman · 15 years ago
  73. f1db585 Refactor -dM mode out of the main routine for -E handling. by Eli Friedman · 15 years ago
  74. f54fce8 Switch some utilities in clang-cc to take a stream instead of a by Eli Friedman · 15 years ago
  75. 621edce Integrate 3 months of ObjC rewriter fixes (from the Apple/objective-rewrite branch). by Steve Naroff · 15 years ago
  76. d82df3a Implement support for GCC's -dD mode, which dumps -E output *and* by Chris Lattner · 15 years ago
  77. c2542b6 Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 16 years ago
  78. 1662938 push line markers through -E mode. by Chris Lattner · 16 years ago
  79. 073777f Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 16 years ago[Renamed from Driver/PrintPreprocessedOutput.cpp]
  80. 7d66ebb fix test/Preprocessor/macro_paste_mscomment.c. by Chris Lattner · 16 years ago
  81. d7038e1 factor token concatenation avoidance logic out of by Chris Lattner · 16 years ago
  82. 2a2bb18 make -dM emit macros in a deterministic (sorted) order instead of by Chris Lattner · 16 years ago
  83. eb213da use efficient form of getSpelling, this speeds up -dM by 16%. by Chris Lattner · 16 years ago
  84. f73903a Add an implementation of -dM that follows GCC closely enough to permit by Chris Lattner · 16 years ago
  85. 59076ab factor some code out into a helper function. by Chris Lattner · 16 years ago
  86. 30fc933 lower the interface to getLineNumber like we did for by Chris Lattner · 16 years ago
  87. 71d8bfb avoid emitting a bogus line marker for the top level #include by Chris Lattner · 16 years ago
  88. b9c3f96 Introduce a new PresumedLoc class to represent the concept of a location by Chris Lattner · 16 years ago
  89. 33116d6 minor speedups/cleanups for -E mode. by Chris Lattner · 16 years ago
  90. 47246be This change refactors some of the low-level lexer interfaces a bit. by Chris Lattner · 16 years ago
  91. 52a3e9e Make sure to escape " when it occurs in a string in pragma comment by Chris Lattner · 16 years ago
  92. c7d945d Make -E mode propagate #pragma comment's into the output. by Chris Lattner · 16 years ago
  93. f7cf85b more SourceLocation lexicon change: instead of referring to the by Chris Lattner · 16 years ago
  94. df7c17a Change some terminology in SourceLocation: instead of referring to by Chris Lattner · 16 years ago
  95. d7a7c00 make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ is enabled by Chris Lattner · 16 years ago
  96. 26fb272 [LLVM up] Update for raw_fd_ostream change. This fixes a FIXME that by Daniel Dunbar · 16 years ago
  97. 9d72851 Rename Characteristic_t to CharacteristicKind by Chris Lattner · 16 years ago
  98. 0b9e736 clean up a bunch of fixme's I added, by moving by Chris Lattner · 16 years ago
  99. 1b9ad14 fit in 80 cols. by Chris Lattner · 16 years ago
  100. fd96684 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 16 years ago