1. 3bbc753 More fixes to builtin preprocessor defines. by Daniel Dunbar · 15 years ago
  2. c9abc04 Make debug info work when using -save-temps. by Daniel Dunbar · 15 years ago
  3. 56473d3 fix typo, noticed by Gabor by Chris Lattner · 15 years ago
  4. 9fd0b1f Set __PIC__ (more) correctly. by Daniel Dunbar · 15 years ago
  5. d573d26 Driver: Fix forwarding of -{std,ansi,trigraphs} when there are by Daniel Dunbar · 15 years ago
  6. 48d1ef7 Driver: Manually translate a number of -f with no- variants options to by Daniel Dunbar · 15 years ago
  7. 3eb2fc8 add a warning for this crazy case, as suggested by Eli. by Chris Lattner · 15 years ago
  8. 0b51415 implement rdar://6762183. I'm not sure if it is more insane that by Chris Lattner · 15 years ago
  9. b1c71df Remove a FIXME, the driver handles -O4. by Daniel Dunbar · 15 years ago
  10. 4ca076f Define __OPTIMIZE__ and __OPTIMIZE_SIZE__ if the -O[12] and -Os flags are passed to the compiler. by Anders Carlsson · 15 years ago
  11. 50748f4 enable -std=c9x and -std=iso9899:199x, patch by Ed Schouten! by Chris Lattner · 15 years ago
  12. 7cd2e93 Implement -fvisibility. by Fariborz Jahanian · 15 years ago
  13. bf1bd6e Rename GeneratePCH action to GeneratePTH by Douglas Gregor · 15 years ago
  14. 26df2f0 Add a new command-line option "-fixit-at=file:line:column" that only by Douglas Gregor · 15 years ago
  15. 035cf89 Remove -ftrapu. by Mike Stump · 15 years ago
  16. de4bf6a Provide FIX-IT notes to describe what fix-it is doing behind the by Douglas Gregor · 15 years ago
  17. 558cb56 Introduce a "-fixit" mode to clang-cc that applies code-modification hints. by Douglas Gregor · 15 years ago
  18. 5d8b2cf Fixup -ftrapv to be more gcc compatible. -ftrapu (for want of a by Mike Stump · 15 years ago
  19. 2add473 Add -ftrapv support, patch from David Chisnall; well all except the by Mike Stump · 15 years ago
  20. 7e203b7 Revert r68221, -ftrapv support, which causes several regressions in by Douglas Gregor · 15 years ago
  21. 3fb07bd Add -ftrapv support, patch from David Chisnall; well all except the by Mike Stump · 15 years ago
  22. 0b5b0da Pull clang-cc code for generating PTH files based on the input type. by Daniel Dunbar · 15 years ago
  23. 08478eb Add '-emit-pth' option to clang-cc as an alternate API for the high-level driver by Ted Kremenek · 15 years ago
  24. 64ffc14 Add two FIXMEs by Daniel Dunbar · 15 years ago
  25. c2542b6 Rename clang.[cpp,h] to clang-cc.[cpp,h] to reflect the name change of the by Ted Kremenek · 15 years ago[Renamed (99%) from tools/clang-cc/clang.cpp]
  26. af07f93 (LLVM up) Update to use llvm::sys::getHostTriple(). by Daniel Dunbar · 15 years ago
  27. a5a7bd0 Improve dependency file support. by Daniel Dunbar · 15 years ago
  28. 682bf92 Push DeclGroup much farther throughout the compiler. Now the various by Chris Lattner · 15 years ago
  29. 1266eca remove TranslationUnit. by Chris Lattner · 15 years ago
  30. 557c5b1 push more ASTContext goodness out through interfaces that use TranslationUnit by Chris Lattner · 15 years ago
  31. 3599dbe remove TranslationUnit from ParseAST. by Chris Lattner · 15 years ago
  32. 5f737cc eliminate ReadASTBitcodeFile by Chris Lattner · 15 years ago
  33. 925a704 revert mike's patch which broke test/CodeGen/no-common.c. by Chris Lattner · 15 years ago
  34. 9ecd26a simplify ParseAST by sucking -disable-free handling logic up into clang.cpp by Chris Lattner · 15 years ago
  35. 1c9b742 Fixup -fcommon and -fno-common to be more gcc compatible. by Mike Stump · 15 years ago
  36. bd36064 most of this is plumbing to get CompileOptions down into by Chris Lattner · 15 years ago
  37. 37e217c -arch ppc should change the triple to powerpc-foo not to ppc-foo. by Chris Lattner · 15 years ago
  38. 073777f Move <root>/Driver into <root>/tools/clang-cc. by Daniel Dunbar · 16 years ago[Renamed from Driver/clang.cpp]
  39. d9cd4c9 if the driver decides to run clang on a .s file, treat it as a .S file. by Chris Lattner · 16 years ago
  40. 22f0d09 PTHManager::Create(): by Ted Kremenek · 16 years ago
  41. 5674388 Frontend: Handle empty input on stdin. - PR3854. by Daniel Dunbar · 16 years ago
  42. 9f9768c ccc/Driver/clang-fe: Accept -fbuiltin, and forward -f[no-]builtin to clang. by Daniel Dunbar · 16 years ago
  43. 7e9c90b add a new LangOptions::GNUMode bit to distinguish between GNU99 and C99 etc. by Chris Lattner · 16 years ago
  44. c53b60a Preserve ordering between -include and -include-pth. by Ted Kremenek · 16 years ago
  45. 748d5d6 Implement "-include-pth" in low-level driver. This allows a PTH file to be used by Ted Kremenek · 16 years ago
  46. f2a17b1 Per Daniel's suggestion, remove default case from switch statement to make by Ted Kremenek · 16 years ago
  47. ab56c5d Support langkind_cxx_pch when determining the language dialect. by Ted Kremenek · 16 years ago
  48. 7afae71 simplify this code by reading the decision from LangOptions instead by Chris Lattner · 16 years ago
  49. 85c4910 Don't accept '$' in identifiers in assembler-with-cpp mode. by Daniel Dunbar · 16 years ago
  50. 0ddcd14 Don't run simplify lib calls with -ffreestanding (fix for already by Daniel Dunbar · 16 years ago
  51. 7644f07 wire up a new -fno-builtin option, make it control things like simplifylibcalls, by Chris Lattner · 16 years ago
  52. 810f6d5 introduce a new -fheinous-gnu-extensions flag that enables really by Chris Lattner · 16 years ago
  53. 1fbee5d implement a new -fprint-source-range-info option, which by Chris Lattner · 16 years ago
  54. 50f4f46 Add Diagnostic files for Frontend and move a couple errors over. by Daniel Dunbar · 16 years ago
  55. 5f8d1db gnu++0x is definitely *not* the default by Gabor Greif · 16 years ago
  56. 26dce44 Limit the template instantiation depth to some user-configurable value by Douglas Gregor · 16 years ago
  57. 1510488 move -g option down into rest of codegen section by Chris Lattner · 16 years ago
  58. 2012604 move debug info generation flag into CompileOptions. by Chris Lattner · 16 years ago
  59. c5613db Improve error messages on bad warning options. by Sebastian Redl · 16 years ago
  60. 63a9e0f Implement the machinery that can process TableGenerated warning options. by Sebastian Redl · 16 years ago
  61. 110e478 To the user, this is just a compiler of course, duh. by Chris Lattner · 16 years ago
  62. dc76310 clean up the OVERVIEW line in clang --help. by Chris Lattner · 16 years ago
  63. 09e94a3 Start making use of "pretty stack dumps" to get by Chris Lattner · 16 years ago
  64. f63aea3 minor cleanups by Chris Lattner · 16 years ago
  65. 6328cc3 implement support for propagating *features* down to the code generator by Chris Lattner · 16 years ago
  66. 16167a6 start wiring up support for target-specific -mfoo options like -msse by Chris Lattner · 16 years ago
  67. e1bd4e6 Rename lib/Driver (etc) to lib/Frontend in prep for the *actual* by Daniel Dunbar · 16 years ago
  68. 10b2614 Adapt help string to what the code is doing (default is lang_gnu99). Thanks rdivacky! by Gabor Greif · 16 years ago
  69. e8e2600 Add -emit-llvm-only option (generate LLVM IR & run passes, but discard by Daniel Dunbar · 16 years ago
  70. adcf5b3 Put compiler headers in <prefix>/lib/clang/1.0/include (vs by Daniel Dunbar · 16 years ago
  71. 6858dd3 fix a bug introduced in my previous patch: moving clang headers to the by Chris Lattner · 16 years ago
  72. b52ec74 always search for "builtin" headers at the end of the search path, by Chris Lattner · 16 years ago
  73. 4709974 add a bunch of timers for -E and other modes. This requires by Chris Lattner · 16 years ago
  74. 4450266 move llvm backend specific #includes into Backend.cpp instead of Clang.cpp by Chris Lattner · 16 years ago
  75. 8a5c809 indentation and formatting by Chris Lattner · 16 years ago
  76. dddaa9c clang will hopefully never support ratfor. by Chris Lattner · 16 years ago
  77. b2509e1 wire up a minimal -ftime-report, which prints the optimizer/codegen by Chris Lattner · 16 years ago
  78. a034ba8 Backend: Accept -mcpu and -mattr for use by TargetMachine. by Daniel Dunbar · 16 years ago
  79. be1fe1e Static Analyzer driver/options (partial) cleanup: by Ted Kremenek · 16 years ago
  80. 5bef8dd add support for -fno-math-errno, and validate that it affects sema properly. by Chris Lattner · 16 years ago
  81. 5ea9d1b remove extraneous . by Chris Lattner · 16 years ago
  82. ef2abfe Support IRgen of sqrt -> llvm.sqrt, pow -> llvm.pow. by Daniel Dunbar · 16 years ago
  83. 3ada6ff PR3589: Don't simplify libcalls with -ffreestanding. by Daniel Dunbar · 16 years ago
  84. 3573c0c Add -ffreestanding to suppress the implicit declaration of library builtins like printf and malloc. Fixes PR3586 by Douglas Gregor · 16 years ago
  85. c76d807 add support for -x c++-header, update comment. by Chris Lattner · 16 years ago
  86. db76684 default diag::err_pp_file_not_found to mapping to fatal, by Chris Lattner · 16 years ago
  87. d604c40 Add -femit-all-decls codegen option. by Daniel Dunbar · 16 years ago
  88. a0f02aa Use the updated CommandLine api for -fno-blocks. by Mike Stump · 16 years ago
  89. ad53eff Fix typo noticed by Chris. by Anders Carlsson · 16 years ago
  90. b0f90cc Turn on -flax-vector-conversions by default, issue a warning whenever one is done. Add a -fnolax-vector-conversions option. Fixes PR2862. by Anders Carlsson · 16 years ago
  91. 65f5e64 wire up -fno-show-source-location option, patch by Alexei Svitkine! by Chris Lattner · 16 years ago
  92. b55cc63 Add -fno-blocks support. This fixes block-no-block-def.c. by Mike Stump · 16 years ago
  93. d2ea386 Fix name of -x option for C preprocessed input; it should be by Daniel Dunbar · 16 years ago
  94. 19e8e2c next round of diagnostics cleanups, moving some by Chris Lattner · 16 years ago
  95. 88eccaf Fix -Wimplicit-function-declaration, which required some refactoring and by Chris Lattner · 16 years ago
  96. 1a36089 Fix a wart that existed from before we had EXTWARN. by Chris Lattner · 16 years ago
  97. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  98. 8a6aec6 Enhance PTHManager::Create() to take an optional Diagnostic* argument that can be used to report issues such as a missing PTH file. by Ted Kremenek · 16 years ago
  99. 46157b5 Patch by Alexei Svitkine: Refactor Sema::ParseAST API to allow clients to pass as an argument a TranslationUnit object whose contents live beyond the call to ParseAST. by Ted Kremenek · 16 years ago
  100. 007f2a9 Add a preliminary version number. by Mike Stump · 16 years ago