1. 0063e98 Use #include <stdio.h> when using fprintf and stderr. by Dan Gohman · 15 years ago
  2. 0498cfc clang-cc: Start moving "pure" option handling to Options.cpp, to separate it by Daniel Dunbar · 15 years ago
  3. 9773429 clang-cc: Sink more options inside codegenopts namespace. by Daniel Dunbar · 15 years ago
  4. e359445 Change LangOpts initialization to directly test the code generation options, by Daniel Dunbar · 15 years ago
  5. fcb0c3b Factor out parts of InitializeCompileOptions that depend on the LangOptions. by Daniel Dunbar · 15 years ago
  6. 8d35314 Localize -disable-llvm-optzns handling to BackendConsumer::CreatePasses. by Daniel Dunbar · 15 years ago
  7. bc2ea34 clang-cc: Start sinking (CodeGen) options into namespaces to limit their scope. by Daniel Dunbar · 15 years ago
  8. 9af8695 Cleanup some clang-cc FIXMEs by Daniel Dunbar · 15 years ago
  9. 36f4ec3 Add CompileOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
  10. 89f8c1d Simplify, following MemoryBuffer::getSTDIN API fix. by Daniel Dunbar · 15 years ago
  11. 9253e49 Remove some if-0'd code, we can resurrect this if we ever decide to support by Daniel Dunbar · 15 years ago
  12. 5fc7d34 Add PreprocessorOptions to CompilerInvocation. by Daniel Dunbar · 15 years ago
  13. 2cdafa8 Privatize InitHeaderSearch, this functionality is only exposed via by Daniel Dunbar · 15 years ago
  14. 26a0cac Move LangOptions, HeaderSearchOptions, and the target feature map into by Daniel Dunbar · 15 years ago
  15. 638c901 Switch Target* to Target&. by Daniel Dunbar · 15 years ago
  16. 227b238 Change clang-cc to expect that all inputs have the same language (so we can only construct a single LangInfo). This matches how it is used in practice (since the compiler only it invokes it for one file at a time). by Daniel Dunbar · 15 years ago
  17. 094a84c (llvm up) Convert clang-cc.cpp:GetLanguage to StringSwitch. by Daniel Dunbar · 15 years ago
  18. e29709f Add CompilerInvocation object, to capture all the options one needs to invoke by Daniel Dunbar · 15 years ago
  19. dd35ce9 Switch clang-cc to use ApplyHeaderSearchOptions, and fix a thinko. by Daniel Dunbar · 15 years ago
  20. e166582 Lift InitHeaderSearch::AddEnvVarPaths logic higher. by Daniel Dunbar · 15 years ago
  21. 8863b98 Rename PreprocessorInitOptions to PreprocessorOptions for consistency, and fix by Daniel Dunbar · 15 years ago
  22. 750156a Lift compiler builtin include path logic higher. by Daniel Dunbar · 15 years ago
  23. 0c8296d Various improvements to Clang's code-completion infrastructure: by Douglas Gregor · 15 years ago
  24. 40d1bb6 Eliminate tabls by John Thompson · 15 years ago
  25. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  26. efcbe94 Replace DiagnosticClient::setLangOptions with {Begin,End}SourceFile, and clarify by Daniel Dunbar · 15 years ago
  27. efceabd Convert CreateAnalysisConsumer and friends to just take a const Preprocessor&, and simplify. by Daniel Dunbar · 15 years ago
  28. ad451cc Remove clang-cc -html-diags option, this doesn't fit in well and we get plenty by Daniel Dunbar · 15 years ago
  29. 4cc1a25 Simplify. by Daniel Dunbar · 15 years ago
  30. 64acf1d CreatePreprocessor cannot fail by Daniel Dunbar · 15 years ago
  31. 90b1827 Kill PreprocessorFactory, which was both morally repugnant and totally unused. by Daniel Dunbar · 15 years ago
  32. 593c41f Turn if chain into switch. by Daniel Dunbar · 15 years ago
  33. 938963f InitializePreprocessor cannot fail. by Daniel Dunbar · 15 years ago
  34. 468fe24 Move -undef flag into PreprocessorInitOptions by Daniel Dunbar · 15 years ago
  35. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  36. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  37. eace874 Factor out a diagnostic options class. by Daniel Dunbar · 15 years ago
  38. 59876c2 Merge constant array and structures. This will create a global variables for arrays and structs that are constant and their initializer is constant. It is on by default but can be disable with the flag -fno-merge-all-constants. by Tanya Lattner · 15 years ago
  39. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  40. 7c15e71 Remove clang-cc code for handling -mmacosx-version-min and by Daniel Dunbar · 15 years ago
  41. 8cb6562 Move some clang-cc errors to use diagnostics, and simplify. by Daniel Dunbar · 15 years ago
  42. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  43. bea5a84 Formatting fixes. by Daniel Dunbar · 15 years ago
  44. 09bdd59 clang-cc: Allow building for x86_64 with -mmacosx-version-min=10.4. by Daniel Dunbar · 15 years ago
  45. 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
  46. 36c4464 Move Diagnostic/DiagClient/FileManager from Indexer => ASTUnit. by Steve Naroff · 15 years ago
  47. 8b88ca6 Simplify (move guard to caller instead of callee). by Daniel Dunbar · 15 years ago
  48. 43d8176 Set up include paths for VC++ and Cygwin headers, along with the by Mike Stump · 15 years ago
  49. 1bb15a9 Add a -nostdclanginc flag to clang-cc that prevents it from searching by Rafael Espindola · 15 years ago
  50. 214904e Set GNUMode only for the "gnu" language standard options, from Ken Dyck! by Douglas Gregor · 15 years ago
  51. 78762eb Add a -dump-record-layouts argument to clang-cc. by Anders Carlsson · 15 years ago
  52. b657f11 Replace the -code-completion-dump option with by Douglas Gregor · 15 years ago
  53. d172bf3 This FIXME is done. by Daniel Dunbar · 15 years ago
  54. b924259 Removed -fobjc-newgc-api option. clang now conforms to by Fariborz Jahanian · 15 years ago
  55. a674bf4 Switch ProcessASTInputFile to still use ParseAST. by Daniel Dunbar · 15 years ago
  56. 31b87d8 Change ASTUnit to take the Diagnostic as an argument, the client should have control of this. by Daniel Dunbar · 15 years ago
  57. 59b2172 switch command line 'parse' methods to use StringRef for efficiency, which by Chris Lattner · 15 years ago
  58. 81b747b Initial implementation of a code-completion interface in Clang. In by Douglas Gregor · 15 years ago
  59. aca2ebd Initial support for code generation from .ast files. by Daniel Dunbar · 15 years ago
  60. 0794d8d clang-cc: Factor out code for creating one of the standard AST consumer actions. by Daniel Dunbar · 15 years ago
  61. 13fdf28 Simplify. by Daniel Dunbar · 15 years ago
  62. 9f43534 clang-cc: Remove -ObjC -ObjC++ handling from clang-cc. by Daniel Dunbar · 15 years ago
  63. b123ea3 Starting patch to generate more specific API for objc's by Fariborz Jahanian · 15 years ago
  64. 3cbf5a0 Be sure to use the correct version instead of the wrong one. by Mike Stump · 15 years ago
  65. 73b7959 Add -target-abi clang-cc option, currently unused. by Daniel Dunbar · 15 years ago
  66. 2f60af7 rewrite the parsing code for -miphoneos-version-min and by Chris Lattner · 15 years ago
  67. d9a1db3 Non fragile ABI for GNU runtime. Patch bu David Chisnall. by Fariborz Jahanian · 15 years ago
  68. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  69. 2e30e59 Use llvm::sys::getHostTriple, not LLVM_HOSTTRIPLE. by Daniel Dunbar · 15 years ago
  70. 5345c39 Add basic support for -pthread. by Daniel Dunbar · 15 years ago
  71. 4d86151 Tweak comment. by Daniel Dunbar · 15 years ago
  72. d697081 Initialize targets before parsing command line options, so --version shows registered targets. by Daniel Dunbar · 15 years ago
  73. 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 15 years ago
  74. ab24c8d Since the HexFloats option only controls a warning, it shouldn't depend by Eli Friedman · 15 years ago
  75. b044c47 Update clang for raw_fd_ostream no longer requiring F_Force. by Dan Gohman · 15 years ago
  76. 0fa0daa prune #includes. by Chris Lattner · 15 years ago
  77. d57a7ef API changes to match llvm ToT. by Chris Lattner · 15 years ago
  78. 7f7b748 CMake: Improve installation of Clang by Douglas Gregor · 15 years ago
  79. 92bcc27 adjust for raw_fd_ostream api change. by Chris Lattner · 15 years ago
  80. 92f5822 Add a -fno-elide-constructors option to clang-cc. by Anders Carlsson · 15 years ago
  81. 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
  82. 70121eb Use LLVM's new error handler API to report back end errors using Diagnostic. by Daniel Dunbar · 15 years ago
  83. 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
  84. 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
  85. 21fde99 Remove duplicated colon. by Benjamin Kramer · 15 years ago
  86. 738f8c2 Add beginnigs of rtti generation, wire up more of -fno-exceptions. by Mike Stump · 15 years ago
  87. 70186ab Destroy the ASTConsumer prior to the Context, HTMLPrinter for example wants to by Daniel Dunbar · 15 years ago
  88. d720046 Update for LLVM API change. by Owen Anderson · 15 years ago
  89. 92db284 Update for raw_fd_ostream API changes. raw_fd_ostream now has a by Dan Gohman · 15 years ago
  90. e650c8c Introduce the notion of "Relocatable" precompiled headers, which are built by Douglas Gregor · 15 years ago
  91. 8f1ca78 Update for changes in LLVM. Hopefully this is the last one for a while. by Owen Anderson · 15 years ago
  92. c93f498 Hold the LLVMContext by reference instead of by pointer. by Owen Anderson · 15 years ago
  93. 42253cc Update for LLVMContext+Module change. by Owen Anderson · 15 years ago
  94. e4f2142 Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. by Chris Lattner · 15 years ago
  95. 4ebe3e4 Make the StackProtector bitfield use enums instead of obscure numbers. by Bill Wendling · 15 years ago
  96. 45483f7 Add stack protector support to clang. This generates the 'ssp' and 'sspreq' by Bill Wendling · 15 years ago
  97. 4e3629e OpenCL 1.0 patch 2/N: Language options & file extension by Nate Begeman · 15 years ago
  98. 91a425c Make sure install Clang headers when building clang-cc by Douglas Gregor · 15 years ago
  99. 34d25d8 Move the command line source location parsing from clang-cc.cpp into "include/Frontend/CommandLineSourceLoc.h". by Argyrios Kyrtzidis · 15 years ago
  100. 5c7a603 Tiny correction on the command-line source location parser. by Argyrios Kyrtzidis · 15 years ago