1. 5ba37d5 Split isFromMainFile into two functions. by Eli Friedman · 12 years ago
  2. 07e6c40 Add option to disable module loading. by Daniel Jasper · 12 years ago
  3. 5afb04a Added preproc callback for pragma directives. by Enea Zaffanella · 12 years ago
  4. b102856 Add condition expression result to if and elif callbacks. by John Thompson · 12 years ago
  5. 701a352 Don't give # and ## special treatment when in -traditional-cpp mode. Patch by by Richard Smith · 12 years ago
  6. b53e548 This patch adds new private headers to the module map. Private by Lawrence Crowl · 12 years ago
  7. cdf8b88 Make sure the assembler-with-cpp hack for "#" works with multiple "#"s in by Eli Friedman · 12 years ago
  8. 089ee15 PR16339: Don't produce a diagnostic pointing at the whitespace between a '#if' by Richard Smith · 12 years ago
  9. 33a4b3d Introducing -Wheader-guard, a warning that checks header guards actually work by Richard Trieu · 12 years ago
  10. dc9fdaf [modules] If we hit a failure while loading a PCH/module, abort parsing instead of trying to continue in an invalid state. by Argyrios Kyrtzidis · 12 years ago
  11. 7d17010 Use only explicit bool conversion operator by David Blaikie · 12 years ago
  12. d48b91d [PCH] Fix memory leak related to deserialized MacroInfo objects. by Argyrios Kyrtzidis · 13 years ago
  13. e910cc8 Improve the diagnostics of the number-reading preprocessor directives. by Michael Ilseman · 13 years ago
  14. 0c2f30b [preprocessor] Allow comparing two macro definitions syntactically instead of only lexically. by Argyrios Kyrtzidis · 13 years ago
  15. b6210df [Preprocessor/Modules] Separate the macro directives kinds into their own MacroDirective's subclasses. by Argyrios Kyrtzidis · 13 years ago
  16. eb663da [PCH/Modules] De/Serialize MacroInfos separately than MacroDirectives. by Argyrios Kyrtzidis · 13 years ago
  17. 4f32da1 [modules] When a MacroInfo object is deserialized, allocate and store its submodule ID. by Argyrios Kyrtzidis · 13 years ago
  18. 1dc4a3d PR15539: Record "evaluating if/elif condition" flag in the right place by David Blaikie · 13 years ago
  19. 7b24254 After issuing a diagnostic for undefining or redefining a builtin macro, by Richard Smith · 13 years ago
  20. fead64b [preprocessor] Use MacroDirective in the preprocessor callbacks to make available the by Argyrios Kyrtzidis · 13 years ago
  21. 176057b Preproceessor: fix #if skipping under -traditional-cpp. by Jordan Rose · 13 years ago
  22. cb8a1ac Preprocessor: preserve whitespace in -traditional-cpp mode. by Jordan Rose · 13 years ago
  23. 09c9e81 [preprocessor] Split the MacroInfo class into two separate concepts, MacroInfo class by Argyrios Kyrtzidis · 13 years ago
  24. a7d0384 Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 13 years ago
  25. f5f9452 Teach subframework header lookup to suggest modules <rdar://problem/13176200>. by Douglas Gregor · 13 years ago
  26. ae4feb6 [Lex] Remove DirectoryLookup.UserSpecified, which is unused. by Daniel Dunbar · 13 years ago
  27. 1d58cdb Add some semantic checks for OpenCL. Variadic macros, VLAs and bitfields are not supported. by Joey Gouly · 13 years ago
  28. 6ce0000 No longer crashing with an assert when __has_include or __has_include_next is used outside of a preprocessor directive. This fixes PR14837. by Aaron Ballman · 13 years ago
  29. 99b0a6a [preprocessor] Call the MacroUndefined callback even when the macro was not defined. by Argyrios Kyrtzidis · 13 years ago
  30. f857950 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 13 years ago
  31. 2bf7fdb s/CPlusPlus0x/CPlusPlus11/g by Richard Smith · 13 years ago
  32. c50d492 Use @import rather than @__experimental_modules_import, since the by Douglas Gregor · 13 years ago
  33. 222a7bb [Preprocessor] Enhance Ifdef/Ifndef/Defined preprocessor callbacks to also pass by Argyrios Kyrtzidis · 13 years ago
  34. 3a02247 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 13 years ago
  35. 7a62657 Keep track of modules that have failed to build. If we encounter an by Douglas Gregor · 13 years ago
  36. 14d3c79 Suppress elided variadic macro argument extension diagnostic for macros using by Eli Friedman · 13 years ago
  37. 2edbc86 Make the FilenameRange of the InclusionDirective callback more accurate, by Argyrios Kyrtzidis · 13 years ago
  38. cb28f9d Rework the (de-)serialization of macros, as stored in by Douglas Gregor · 13 years ago
  39. 19d78b7 For PPCallbacks::InclusionDirective() add a parameter for the module, whenever by Argyrios Kyrtzidis · 13 years ago
  40. 051b443 Add an assertion to make sure the implicitly imported module by Argyrios Kyrtzidis · 13 years ago
  41. 4fcd288 Per discussion in http://lists.cs.uiuc.edu/pipermail/cfe-commits/Week-of-Mon-20120917/064551.html by Argyrios Kyrtzidis · 13 years ago
  42. e552941 [libclang] Fix getting a cursor inside an angled #include directive. by Argyrios Kyrtzidis · 13 years ago
  43. c0b4928 Fixed a problem with #pragma push_macro/pop_macro implementation. by Alexander Kornienko · 13 years ago
  44. 8b3f623 Keep history of macro definitions and #undefs by Alexander Kornienko · 13 years ago
  45. 8f94ac6 Adding a fixit for includes that cannot be found with angle brackets, but can be found with quoted strings instead. Implements PR13201. by Aaron Ballman · 13 years ago
  46. 0638c15 preprocessing: gcc supports #line 0. So, treat this by Fariborz Jahanian · 13 years ago
  47. 87d8fb9 Add testing for CommentHandler, and fix a bug where trailing comments in #else by Richard Smith · 13 years ago
  48. f6333ac Documentation cleanup: by James Dennett · 13 years ago
  49. d012457 Do not complain about junk on the end of a #endif in a skipped block. Such junk by Richard Smith · 13 years ago
  50. d532124 Add a -rewrite-includes option, which is similar to -rewrite-macros, but only expands #include directives. by David Blaikie · 13 years ago
  51. e5fbc6c Lexer::ReadToEndOfLine: Only build the string if it's actually used and do so in a less malloc-intensive way. by Benjamin Kramer · 13 years ago
  52. c9e48c0 Fixed MacroInfo definition range for function like macros with empty body. by Abramo Bagnara · 14 years ago
  53. a956450 [preprocessor] Handle correctly inclusion directives that have macro expansions, e.g by Argyrios Kyrtzidis · 14 years ago
  54. 0467f55 Turns #import in MS Mode into an error. by Aaron Ballman · 14 years ago
  55. bbafb8a Unify naming of LangOptions variable/get function across the Clang stack (Lex to AST). by David Blaikie · 14 years ago
  56. d67aea2 User-defined literals: reject string and character UDLs in all places where the by Richard Smith · 14 years ago
  57. c793a61 [preprocessor] Enhance the preprocessor callbacks: by Argyrios Kyrtzidis · 14 years ago
  58. 611306e Adding support for #pragma include_alias in MS compatibility mode. This implements PR 10705. by Aaron Ballman · 14 years ago
  59. c1e4dd0 Change @import to @__experimental_modules_import. We are not ready to commit to a particular syntax for modules, by Ted Kremenek · 14 years ago
  60. ead9a05 Revert r151800, which was committed without review and has correctness issues. by Richard Smith · 14 years ago
  61. cd5092d Implements support for #pragma include_alias in ms compatibility mode. Fixes PR10705. by Aaron Ballman · 14 years ago
  62. 2c21c44 Move suport for redefining operator keywords from -fms-extensions to -fms-compatibility. by Nico Weber · 14 years ago
  63. 2e68620 Allow operator keywords to be #defined in ms-ext mode. by Nico Weber · 14 years ago
  64. 2c1dd27 Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 14 years ago
  65. 7f4bd16 Per discussion on cfe-dev, remove '#error' and '#warning' from diagnostic text. by Ted Kremenek · 14 years ago
  66. 8a40f70 Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) by David Blaikie · 14 years ago
  67. 663b48f Re-uglify #public and #private to #__public_macro and #__private_macro. by Douglas Gregor · 14 years ago
  68. da82e70 Eliminate the uglified keyword __import_module__ for importing by Douglas Gregor · 14 years ago
  69. 0bf886d Under -fmodules, accept #public <macroname> and #private <macroname> by Douglas Gregor · 14 years ago
  70. ad01b31 Add a "Modules" language option, which subsumes the previous by Douglas Gregor · 14 years ago
  71. 98a52db Detect when mapping a #include/#import over to a submodule ends up by Douglas Gregor · 14 years ago
  72. eb3ce7c Don't allow #include (and its friends #import, #include_next and by Richard Smith · 14 years ago
  73. 2537a36 Keep track of import dependencies between submodules within the module by Douglas Gregor · 14 years ago
  74. bcfc7d0 When we treat an #include or #import as a module import, create an by Douglas Gregor · 14 years ago
  75. ff2be53 Introduce the notion of name visibility into modules. For a given by Douglas Gregor · 14 years ago
  76. de3ef50 Promote ModuleMap::Module to a namespace-scope class in the Basic by Douglas Gregor · 14 years ago
  77. c3312fa Note that we'll need to handle __include_macros specially in the module loader by Douglas Gregor · 14 years ago
  78. 11729f0 Move the module auto-import logic after the logic that allows a by Douglas Gregor · 14 years ago
  79. 4401fbe Trivial indentation fix for the code I just committed by Douglas Gregor · 14 years ago
  80. 41e115a Introduce an opt-in warning indicating when the compiler is treating by Douglas Gregor · 14 years ago
  81. 7194420 Switch the module-loading interfaces and parser from a simple by Douglas Gregor · 14 years ago
  82. 8ad31c2 Allow preprocessor callbacks to recover from a "file not found" error, by Douglas Gregor · 14 years ago
  83. c04f644 When making a suggestion regarding which module to load rather than by Douglas Gregor · 14 years ago
  84. ebf0049 For modules, all macros that aren't include guards are implicitly by Douglas Gregor · 14 years ago
  85. acd4d3d -Wc++98-compat warnings for the lexer. by Richard Smith · 14 years ago
  86. 192e034 A couple random preprocessor changes that got ported from C99 to C++11. by Eli Friedman · 14 years ago
  87. 32f5fe1 Add explicit attributes to mark functions as having had their by John McCall · 14 years ago
  88. 18bcfd5 Introduce a callback to PPCallbacks for lines skipped by the preprocessor. by Argyrios Kyrtzidis · 14 years ago
  89. 9c902b5 Rename Diagnostic to DiagnosticsEngine as per issue 5397 by David Blaikie · 14 years ago
  90. 97eec24 Add an experimental flag -fauto-module-import that automatically turns by Douglas Gregor · 14 years ago
  91. 5cec2ae Support code-completion for C++ inline methods and ObjC buffering methods. by Argyrios Kyrtzidis · 14 years ago
  92. 4a69c2e Modules hide macro definitions by default, so that silly things like by Douglas Gregor · 14 years ago
  93. 3781a36 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
  94. 4acfbcd Don't warn on varaidic macros in C++0x mode. by Eli Friedman · 14 years ago
  95. fb65e59 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 14 years ago
  96. c7ca521 Rename getDecomposedInstantiationLoc to getDecomposedExpansionLoc. by Chandler Carruth · 14 years ago
  97. 0e62c1c remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports by Chris Lattner · 14 years ago
  98. 77b0e7f2 Implement -MG. Fixes PR9613 by Peter Collingbourne · 14 years ago
  99. 2299889 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
  100. d395b93 Replace an unreachable error path with an assert by Peter Collingbourne · 14 years ago