1. c31176d Use -fno-math-errno by default, and remove the IsMathErrnoDefault by Dan Gohman · 15 years ago
  2. edcfc41 Allow clang to pass -x cl through to compiler driver. by Nate Begeman · 15 years ago
  3. 54d76db Remove some dead variables clang-analyzer found. by Benjamin Kramer · 15 years ago
  4. 2550d70 move a few more symbols to .rodata/.data.rel.ro by Nuno Lopes · 15 years ago
  5. 73ba9a6 Driver: Fix '... -O4 -O0 ...', which was generating bitcode. by Daniel Dunbar · 15 years ago
  6. 1bda434 Driver: Drop ToolChain::getHost() by Daniel Dunbar · 15 years ago
  7. f360138 Driver: When linking, don't warn about unused arguments which are obviously only by Daniel Dunbar · 15 years ago
  8. a91320b ARM: Honor -mfpu= and set __VFP_FP__ and __ARM_NEON__ "correctly". by Daniel Dunbar · 15 years ago
  9. ee788e7 Add ToolChain::getDriver() and use it instead of going through the HostInfo by Daniel Dunbar · 15 years ago
  10. 7177dee Remove ';' after method definition. Noticed by clang++, which one would think by Daniel Dunbar · 15 years ago
  11. 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
  12. 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
  13. f2d8b9f Add -dwarf-debug-flags, which provides a way to embed the cc1 level options used by Daniel Dunbar · 15 years ago
  14. 8663b18 Fix -fdollars-in-identifiers Clang translation. by Daniel Dunbar · 15 years ago
  15. 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
  16. 5f12232 Driver: Pass -resource-dir to clang -cc1, since the driver presumably already found itself. by Daniel Dunbar · 15 years ago
  17. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  18. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  19. 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
  20. 8ff5b28 Driver: Switch to using "clang" "-cc1" instead of "clang-cc". by Daniel Dunbar · 15 years ago
  21. 68f7a24 spread 'const' love to some variables. this considerably reduces the amount of dirty data around. by Nuno Lopes · 15 years ago
  22. 87667aa Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. by Daniel Dunbar · 15 years ago
  23. e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
  24. b40d06d Enable '-analyzer-opt-analyze-nested-blocks' by default for testing. by Ted Kremenek · 15 years ago
  25. 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
  26. f5431e3 Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. by Daniel Dunbar · 15 years ago
  27. 8477ee9 Driver: Switch -ccc-* options to using the standard options functionality. by Daniel Dunbar · 15 years ago
  28. 2658f05 OptTable: Allow option groups to be used to define "help groups", which will by Daniel Dunbar · 15 years ago
  29. 9a24251 OptParser: Add HelpHidden flag. by Daniel Dunbar · 15 years ago
  30. 0f4c59c Add gcc's -no-canonical-prefixes option to clang. by Rafael Espindola · 15 years ago
  31. ba8d861 Fix Clang tool translation to forward -fvisibility as separate arguments, the by Daniel Dunbar · 15 years ago
  32. 60e107f Add OptTable::PrintHelp. by Daniel Dunbar · 15 years ago
  33. daab7b1 Driver: Add Command::Creator member variable, which tracks the tool that was by Daniel Dunbar · 15 years ago
  34. 56ac85c clang -cc1: Move CompilerInvocation deserialization into CompilerInvocation.cpp, by Daniel Dunbar · 15 years ago
  35. 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
  36. 39ed0b6 clang -cc1: Fix initialization of PreprocessorOptions::TokenCache. by Daniel Dunbar · 15 years ago
  37. 43030a7 clang -cc1: Fix -include-pch now that the test code is in clang-cc. by Daniel Dunbar · 15 years ago
  38. 1c5944c clang -cc1: Initialize LangOptions::{Optimize,NoInline} by Daniel Dunbar · 15 years ago
  39. a28690e Always pass -fmessage-length using separate arguments. by Daniel Dunbar · 15 years ago
  40. 2d8f3e8 clang -cc1: Initialize LangOptions::DollarIdents correctly. by Daniel Dunbar · 15 years ago
  41. 1bc5c03 Don't try to generate common globals for C++ files, instead of depending on the FE to set NoCommon, and simplify CodeGenOptions initialization. by Daniel Dunbar · 15 years ago
  42. b33fbaa Eliminate CodeGenOptions::TimePasses. by Daniel Dunbar · 15 years ago
  43. 3636e1d Eliminate CodeGenOptions::SimplifyLibCalls. by Daniel Dunbar · 15 years ago
  44. 9e61240 clang -cc1: Use proper diagnostics for all parsing errors. by Daniel Dunbar · 15 years ago
  45. e032452 Change CompilerInvocation::CreateFromArgs to report errors using a proper diagnostic engine. by Daniel Dunbar · 15 years ago
  46. 545c281 Change CompilerInvocation::CreateFromArgs to take Argv0 and the address of main (or something in the main executable) so it can find the builtin compiler files. by Daniel Dunbar · 15 years ago
  47. 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
  48. e50c167 Add clang -cc1 parsing for LangOptions. by Daniel Dunbar · 15 years ago
  49. 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
  50. 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
  51. 3fc7e45 Remove header which is bringing libAST in (on MSVC). by Daniel Dunbar · 15 years ago
  52. 6a50ad5 Fix thinko (-fno-builtin != -nobuiltininc). by Daniel Dunbar · 15 years ago
  53. 0ff679f Add clang -cc1 parsing for preprocessor options. by Daniel Dunbar · 15 years ago
  54. d8c7806 Add clang -cc1 parsing for header search options. by Daniel Dunbar · 15 years ago
  55. cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
  56. 3b84f5b Add an arg_iterator, for iterating over a subset of arguments in an ArgList. by Daniel Dunbar · 15 years ago
  57. eb01ac8 Add clang -cc1 parsing for frontend options. by Daniel Dunbar · 15 years ago
  58. 6379476 Add clang -cc1 parsing for preprocessor output options (-E). by Daniel Dunbar · 15 years ago
  59. 6d2eb4d Don't pass -fexceptions=0 (it is the default). by Daniel Dunbar · 15 years ago
  60. 98873ec Fix for Path::isSpecialFile to Path::isRegularFile API in rev 89765. by Edward O'Callaghan · 15 years ago
  61. 56eec2b Fix for PR5568. by Edward O'Callaghan · 15 years ago
  62. 33a33d8 Sketch the rest of the clang -cc1 option definitions, aka fun with C-x C-(. by Daniel Dunbar · 15 years ago
  63. 21affc0 Add clang -cc1 parsing of diagnostic options. by Daniel Dunbar · 15 years ago
  64. 90cb920 Recognize .hpp as a C++ header. by Daniel Dunbar · 15 years ago
  65. e2814d8 Add clang -cc1 parsing of analyzer options. by Daniel Dunbar · 15 years ago
  66. e6c9ae1 Fix refacto, gcc's cc1 needs to see --output-pch=, which is not just an alias by Daniel Dunbar · 15 years ago
  67. 1bed0c3 Driver: Add clang -cc1 dependency output options parsing. by Daniel Dunbar · 15 years ago
  68. 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
  69. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  70. 66861e0 Standardize Driver translation to call clang-cc using '-foo' form instead of '--foo'. by Daniel Dunbar · 15 years ago
  71. 50a4487 Add clang -cc1 parsing of CodeGenOptions. by Daniel Dunbar · 15 years ago
  72. 31db76c Driver: Add parsing for TargetOptions to CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
  73. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  74. a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
  75. c06a8d8 Add missing dependency for CMake. by Daniel Dunbar · 15 years ago
  76. 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
  77. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  78. 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
  79. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  80. a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
  81. 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
  82. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  83. b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
  84. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  85. 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
  86. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  87. 1ce9cf0 Make MSVC happy. by Daniel Dunbar · 15 years ago
  88. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  89. d8e0e45 Driver: Make local type name more distinct. by Daniel Dunbar · 15 years ago
  90. 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
  91. a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
  92. 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  93. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  94. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  95. 77544fd Add driver::types::isObjC predicate. by Daniel Dunbar · 15 years ago
  96. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  97. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  98. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  99. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  100. 76e80c0 Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago