1. 124fca5 implement -ftabstop=width, patch by Christian Adåker by Chris Lattner · 15 years ago
  2. c31176d Use -fno-math-errno by default, and remove the IsMathErrnoDefault by Dan Gohman · 15 years ago
  3. 1bda434 Driver: Drop ToolChain::getHost() by Daniel Dunbar · 15 years ago
  4. a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
  5. ee788e7 Add ToolChain::getDriver() and use it instead of going through the HostInfo by Daniel Dunbar · 15 years ago
  6. 97f52ac ARM: Use front-end specific target features "soft-float" and "soft-float-abi" to communicate FP mode to target; __SOFTFP__ is set correctly now. by Daniel Dunbar · 15 years ago
  7. 38b48af clang -cc1: Rename -mcpu to -target-cpu to match other target options and not alias driver/backend option. by Daniel Dunbar · 15 years ago
  8. f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
  9. 8663b18 Fix -fdollars-in-identifiers Clang translation. by Daniel Dunbar · 15 years ago
  10. fc28448 implement PR5654: add -fassume-sane-operator-new, which is enabled by default, and adds the malloc attribute to the global function new() and to the overloaded new operators. by Nuno Lopes · 15 years ago
  11. 5f12232 Driver: Pass -resource-dir to clang -cc1, since the driver presumably already found itself. by Daniel Dunbar · 15 years ago
  12. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  13. 6feaf57 Make using '-fshort-enums' an error until it is actually implemented (changes the ABI, so it is dangerous to not error out if we don't support it). Fixes <rdar://problem/7461006>. by Ted Kremenek · 15 years ago
  14. 8ff5b28 Driver: Switch to using "clang" "-cc1" instead of "clang-cc". by Daniel Dunbar · 15 years ago
  15. 87667aa Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. by Daniel Dunbar · 15 years ago
  16. b40d06d Enable '-analyzer-opt-analyze-nested-blocks' by default for testing. by Ted Kremenek · 15 years ago
  17. 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
  18. 0f4c59c Add gcc's -no-canonical-prefixes option to clang. by Rafael Espindola · 15 years ago
  19. ba8d861 Fix Clang tool translation to forward -fvisibility as separate arguments, the by Daniel Dunbar · 15 years ago
  20. daab7b1 Driver: Add Command::Creator member variable, which tracks the tool that was by Daniel Dunbar · 15 years ago
  21. 3b31526 Add CodeGenOptions::{SoftFloat,FloatABI}, and update the all the (far too many) places to use this instead of using the backend -soft-float and -float-abi= options. by Daniel Dunbar · 15 years ago
  22. a28690e Always pass -fmessage-length using separate arguments. by Daniel Dunbar · 15 years ago
  23. f219e7c Move LLVM backend options to explicit clang-cc / clang -cc1 options, which we then manually pass to the command line library; eventually the latter grossness should be fixed by a real API when creating the target machine. by Daniel Dunbar · 15 years ago
  24. 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
  25. cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
  26. 6d2eb4d Don't pass -fexceptions=0 (it is the default). by Daniel Dunbar · 15 years ago
  27. e6c9ae1 Fix refacto, gcc's cc1 needs to see --output-pch=, which is not just an alias by Daniel Dunbar · 15 years ago
  28. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  29. 66861e0 Standardize Driver translation to call clang-cc using '-foo' form instead of '--foo'. by Daniel Dunbar · 15 years ago
  30. 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
  31. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  32. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  33. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  34. 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  35. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  36. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  37. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  38. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  39. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  40. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  41. 76e80c0 Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  42. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  43. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  44. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  45. 294691e Fix indentation. by Daniel Dunbar · 15 years ago
  46. 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
  47. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  48. 4d63f8b Fix -pthread on dragonfly. Patch by Sascha Wildner. by Mike Stump · 15 years ago
  49. dd4fe00 Change the driver to do the Darwin triple mangling itself instead of forwarding by Daniel Dunbar · 15 years ago
  50. ee848a7 Remove some obsolete or unnecessary FIXMEs. by Daniel Dunbar · 15 years ago
  51. 6e8371e PR5328: Allow duplicatic -pedantic (and -pedantic-errors) options. by Daniel Dunbar · 15 years ago
  52. f7fb31f Kill off MakeFormattedString helper function. by Daniel Dunbar · 15 years ago
  53. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  54. 55d3f7a [llvm up] by Douglas Gregor · 15 years ago
  55. e7e1820 Fix for PR4887, Credit to Jonathan Gray. by Edward O'Callaghan · 15 years ago
  56. 8d737cc Rename -nostdclanginc to -nobuiltininc. by Rafael Espindola · 15 years ago
  57. ff430e6 AuroraUX toolchain should call GNU assembler not the Solaris assembler. by Edward O'Callaghan · 15 years ago
  58. 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
  59. 528365d fix -ansi in c++: it means -std=c++98 by Nuno Lopes · 15 years ago
  60. 0ebd932 Driver: Default to using PTH for C++ precompiled header support, PCH for C++ by Daniel Dunbar · 15 years ago
  61. 7adf949 AuroraUX toolchain fixes. by Edward O'Callaghan · 15 years ago
  62. 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
  63. 6961fdd Add the -nostdclanginc option to clang (the driver). by Rafael Espindola · 15 years ago
  64. 85caf03 Set __EXCEPTIONS by checking on darwin's triple. Patch by Rafael Espindola. by Fariborz Jahanian · 15 years ago
  65. f759df0 Move the "needs exception support" logic to clang. This also fixes by Rafael Espindola · 15 years ago
  66. 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
  67. 1d4612b Split Darwin toolchain into Clang and GCC Darwin toolchains with a common base. by Daniel Dunbar · 15 years ago
  68. 6cd4154 Lift AddLinkRuntimeLibArgs into Darwin tool chain. by Daniel Dunbar · 15 years ago
  69. 608d04c Move isMacosxVersionLT helpers to Darwin tool chain. by Daniel Dunbar · 15 years ago
  70. 48d5aae Lift getMacosxVersionMin out into Darwin ToolChain. by Daniel Dunbar · 15 years ago
  71. 6b200b2 Lift AddLinkerSearchPaths() into Darwin tool chain. by Daniel Dunbar · 15 years ago
  72. ae54af2 Rename a variable to match its semantics. by Daniel Dunbar · 15 years ago
  73. 20f0eac Driver: Change -O to mean -O2, -O1 is meaningless. by Daniel Dunbar · 15 years ago
  74. e3b8d07 We don't need a -compile-ast clang-cc action, we can just use -S. by Daniel Dunbar · 15 years ago
  75. 6bea73b Incremental improvement to logic determining whether we emit unwind tables or by Daniel Dunbar · 15 years ago
  76. 2030d8f Support -mabi= for clang/ARM. by Daniel Dunbar · 15 years ago
  77. f4aa4f61 Swizzle the target triple based on -mthumb, and update clang-cc to recognize by Daniel Dunbar · 15 years ago
  78. cbd1933 Initial handling of -m{soft-float,hard-float,float-abi=} for ARM. by Daniel Dunbar · 15 years ago
  79. e6ad3f9 Move X86 handling of -m[no-]soft-float and -m[no-]red-zone into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  80. 1d65e4b Change getLLVMArchNameForARM to just get the suffix. by Daniel Dunbar · 15 years ago
  81. 728a512 Add code to mangle the triple for LLVM on ARM. by Daniel Dunbar · 15 years ago
  82. 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
  83. b163ef7 ARM: Pass -mcpu to clang-cc based on -march= and -mcpu=. by Daniel Dunbar · 15 years ago
  84. 2ba9157 Implement Darwin/ARM behavior for defaulting to -fno-builtin-str{cat,cpy}. by Daniel Dunbar · 15 years ago
  85. e2fd664 Add a check that -static is not used with -dynamic or -mdynamic-no-pic. by Daniel Dunbar · 15 years ago
  86. 88a3d6c Factor out CheckPreprocessing options to share between Clang/CC1 tools. by Daniel Dunbar · 15 years ago
  87. 6acda16 Move Clang X86 cpu/feature argument translation into AddX86TargetArgs. by Daniel Dunbar · 15 years ago
  88. 5ed34f4 Change Get{File,Program}Path to return an std::string (instead of a sys::Path). by Daniel Dunbar · 15 years ago
  89. 8813764 Remove gratuitous use of c_str(). by Daniel Dunbar · 15 years ago
  90. 302e2ea Use Twine concatenation instead of llvm::format. by Daniel Dunbar · 15 years ago
  91. 5b750fe Simplify. by Daniel Dunbar · 15 years ago
  92. cc6f803 Use AddDarwinArch for passing arch name to assembler. by Daniel Dunbar · 15 years ago
  93. fbefe6b Add DarwinTool base class for all Darwin tools, and move AddDarwin[Sub]Arch there. by Daniel Dunbar · 15 years ago
  94. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  95. e0be8b1 Remove FIXMEs for pedantically-gcc-bug-compatible behavior. by Daniel Dunbar · 15 years ago
  96. ae33f8f Merge libgcc spec changes for darwin::Link::ConstructJob. by Daniel Dunbar · 15 years ago
  97. d82f8fa Tweak darwin::Link::AddLinkArgs. by Daniel Dunbar · 15 years ago
  98. 78dbd58 Implement darwin::Link::AddDarwinArch for ARM. by Daniel Dunbar · 15 years ago
  99. 30392de Darwin: Pass -iphoneos-version-min to ld when building for ARM. by Daniel Dunbar · 15 years ago
  100. f395528 Rename Darwin_X86 toolchain to just Darwin, this can support all platforms. by Daniel Dunbar · 15 years ago