1. 0ff679f Add clang -cc1 parsing for preprocessor options. by Daniel Dunbar · 15 years ago
  2. d8c7806 Add clang -cc1 parsing for header search options. by Daniel Dunbar · 15 years ago
  3. cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
  4. 3b84f5b Add an arg_iterator, for iterating over a subset of arguments in an ArgList. by Daniel Dunbar · 15 years ago
  5. eb01ac8 Add clang -cc1 parsing for frontend options. by Daniel Dunbar · 15 years ago
  6. 6379476 Add clang -cc1 parsing for preprocessor output options (-E). by Daniel Dunbar · 15 years ago
  7. 6d2eb4d Don't pass -fexceptions=0 (it is the default). by Daniel Dunbar · 15 years ago
  8. 98873ec Fix for Path::isSpecialFile to Path::isRegularFile API in rev 89765. by Edward O'Callaghan · 15 years ago
  9. 56eec2b Fix for PR5568. by Edward O'Callaghan · 15 years ago
  10. 33a33d8 Sketch the rest of the clang -cc1 option definitions, aka fun with C-x C-(. by Daniel Dunbar · 15 years ago
  11. 21affc0 Add clang -cc1 parsing of diagnostic options. by Daniel Dunbar · 15 years ago
  12. 90cb920 Recognize .hpp as a C++ header. by Daniel Dunbar · 15 years ago
  13. e2814d8 Add clang -cc1 parsing of analyzer options. by Daniel Dunbar · 15 years ago
  14. e6c9ae1 Fix refacto, gcc's cc1 needs to see --output-pch=, which is not just an alias by Daniel Dunbar · 15 years ago
  15. 1bed0c3 Driver: Add clang -cc1 dependency output options parsing. by Daniel Dunbar · 15 years ago
  16. 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
  17. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  18. 66861e0 Standardize Driver translation to call clang-cc using '-foo' form instead of '--foo'. by Daniel Dunbar · 15 years ago
  19. 50a4487 Add clang -cc1 parsing of CodeGenOptions. by Daniel Dunbar · 15 years ago
  20. 31db76c Driver: Add parsing for TargetOptions to CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
  21. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  22. a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
  23. c06a8d8 Add missing dependency for CMake. by Daniel Dunbar · 15 years ago
  24. 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
  25. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  26. 53e8484 Switch -f{builtin,math-errno,rtti} and -analyzer-purge-dead to -...no... variants instead of using llvm::cl::init(true) arguments. by Daniel Dunbar · 15 years ago
  27. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  28. a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
  29. 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
  30. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  31. b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
  32. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  33. 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
  34. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  35. 1ce9cf0 Make MSVC happy. by Daniel Dunbar · 15 years ago
  36. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  37. d8e0e45 Driver: Make local type name more distinct. by Daniel Dunbar · 15 years ago
  38. 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
  39. a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
  40. 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  41. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  42. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  43. 77544fd Add driver::types::isObjC predicate. by Daniel Dunbar · 15 years ago
  44. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  45. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  46. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  47. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  48. 76e80c0 Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  49. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  50. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  51. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  52. 294691e Fix indentation. by Daniel Dunbar · 15 years ago
  53. 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
  54. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  55. 4d63f8b Fix -pthread on dragonfly. Patch by Sascha Wildner. by Mike Stump · 15 years ago
  56. dd4fe00 Change the driver to do the Darwin triple mangling itself instead of forwarding by Daniel Dunbar · 15 years ago
  57. ee848a7 Remove some obsolete or unnecessary FIXMEs. by Daniel Dunbar · 15 years ago
  58. 6e8371e PR5328: Allow duplicatic -pedantic (and -pedantic-errors) options. by Daniel Dunbar · 15 years ago
  59. f7fb31f Kill off MakeFormattedString helper function. by Daniel Dunbar · 15 years ago
  60. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  61. 55d3f7a [llvm up] by Douglas Gregor · 15 years ago
  62. e7e1820 Fix for PR4887, Credit to Jonathan Gray. by Edward O'Callaghan · 15 years ago
  63. 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
  64. 080fb19 Driver: Fix thinko in logic for finding gcc's tool chain directory. by Daniel Dunbar · 15 years ago
  65. 87f9fd9 Driver: don't produce bogus osx version numbers if no version (aka 0) was specified. by Benjamin Kramer · 15 years ago
  66. 74782b0 Driver: If unable to find the gcc tool chain, try the next OS rev. by Daniel Dunbar · 15 years ago
  67. ff430e6 AuroraUX toolchain should call GNU assembler not the Solaris assembler. by Edward O'Callaghan · 15 years ago
  68. 3cecc19 dynamic linker arg is incorrectly invoking gnu ld arg syntax instead of svr4 ld syntax in AuroraUX toolchain. by Edward O'Callaghan · 15 years ago
  69. 528365d fix -ansi in c++: it means -std=c++98 by Nuno Lopes · 15 years ago
  70. 0ebd932 Driver: Default to using PTH for C++ precompiled header support, PCH for C++ by Daniel Dunbar · 15 years ago
  71. 7adf949 AuroraUX toolchain fixes. by Edward O'Callaghan · 15 years ago
  72. c376910 -funit-at-a-time is the default however some current makefiles pass -fno-unit-at-a-time which is ignored by GCC, we should warn about this not error out. by Edward O'Callaghan · 15 years ago
  73. 5b8cdb5 Allow customization for the version line. by Mike Stump · 15 years ago
  74. 14ea569 Installation of Clang libraries and headers, from Axel Naumann! by Douglas Gregor · 15 years ago
  75. 55bac53 Revert r83443. by Ted Kremenek · 15 years ago
  76. 44da821 Fixup pathnames. by Mike Stump · 15 years ago
  77. 6961fdd Add the -nostdclanginc option to clang (the driver). by Rafael Espindola · 15 years ago
  78. b8d1191 Provide a common set of routines in Version.h that return Subversion by Douglas Gregor · 15 years ago
  79. 85caf03 Set __EXCEPTIONS by checking on darwin's triple. Patch by Rafael Espindola. by Fariborz Jahanian · 15 years ago
  80. f759df0 Move the "needs exception support" logic to clang. This also fixes by Rafael Espindola · 15 years ago
  81. a92ba27 Fix truck sized thinko where Darwin/ARM toolchain didn't look for programs in by Daniel Dunbar · 15 years ago
  82. b8bb3e7 Turn on 'RegionStore' as the default store manager both for 'clang --analyze' and 'scan-build'. Leave 'BasicStore' as the default store manager in 'clang-cc'. While there are still known warts with RegionStore, it's ready to be tested by general users. by Ted Kremenek · 15 years ago
  83. f44c585 Push "clang-is-production" logic up to tools/driver, and make it hittable by by Daniel Dunbar · 15 years ago
  84. 1d4612b Split Darwin toolchain into Clang and GCC Darwin toolchains with a common base. by Daniel Dunbar · 15 years ago
  85. 6cd4154 Lift AddLinkRuntimeLibArgs into Darwin tool chain. by Daniel Dunbar · 15 years ago
  86. 608d04c Move isMacosxVersionLT helpers to Darwin tool chain. by Daniel Dunbar · 15 years ago
  87. 48d5aae Lift getMacosxVersionMin out into Darwin ToolChain. by Daniel Dunbar · 15 years ago
  88. 6b200b2 Lift AddLinkerSearchPaths() into Darwin tool chain. by Daniel Dunbar · 15 years ago
  89. ae54af2 Rename a variable to match its semantics. by Daniel Dunbar · 15 years ago
  90. 20f0eac Driver: Change -O to mean -O2, -O1 is meaningless. by Daniel Dunbar · 15 years ago
  91. 634b245 Improve driver error message when only running the preprocessor and an input is by Daniel Dunbar · 15 years ago
  92. e3b8d07 We don't need a -compile-ast clang-cc action, we can just use -S. by Daniel Dunbar · 15 years ago
  93. 6bea73b Incremental improvement to logic determining whether we emit unwind tables or by Daniel Dunbar · 15 years ago
  94. 2030d8f Support -mabi= for clang/ARM. by Daniel Dunbar · 15 years ago
  95. f4aa4f61 Swizzle the target triple based on -mthumb, and update clang-cc to recognize by Daniel Dunbar · 15 years ago
  96. cbd1933 Initial handling of -m{soft-float,hard-float,float-abi=} for ARM. by Daniel Dunbar · 15 years ago
  97. e6ad3f9 Move X86 handling of -m[no-]soft-float and -m[no-]red-zone into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  98. 1d65e4b Change getLLVMArchNameForARM to just get the suffix. by Daniel Dunbar · 15 years ago
  99. 728a512 Add code to mangle the triple for LLVM on ARM. by Daniel Dunbar · 15 years ago
  100. f84a4a4 Don't pass -fno-builtin-str{cat,cpy} to clang-cc, I forget we don't support that yet. PR4941. by Daniel Dunbar · 15 years ago