1. 8663b18 Fix -fdollars-in-identifiers Clang translation. by Daniel Dunbar · 15 years ago
  2. 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
  3. 5f12232 Driver: Pass -resource-dir to clang -cc1, since the driver presumably already found itself. by Daniel Dunbar · 15 years ago
  4. 9f61aa9 Un-namespace-qualify llvm_unreachable. It's a macro, so the qualification gave by Jeffrey Yasskin · 15 years ago
  5. 9c276ae Implement runtime checks for undefined behavior. WIP. by Mike Stump · 15 years ago
  6. 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
  7. 8ff5b28 Driver: Switch to using "clang" "-cc1" instead of "clang-cc". by Daniel Dunbar · 15 years ago
  8. 68f7a24 spread 'const' love to some variables. this considerably reduces the amount of dirty data around. by Nuno Lopes · 15 years ago
  9. 87667aa Unbreak clang-cc handling of -msoft-float / -mfloat-abi=, which I borked. by Daniel Dunbar · 15 years ago
  10. e3fdca2 Remove several .c_str() to be forward-compatible with StringRef. by Jeffrey Yasskin · 15 years ago
  11. b40d06d Enable '-analyzer-opt-analyze-nested-blocks' by default for testing. by Ted Kremenek · 15 years ago
  12. 7ca7987 Shorten the help test for -no-canonical-prefixes, put it behind HelpHidden and by Rafael Espindola · 15 years ago
  13. f5431e3 Unbreak -ccc-cxx and -ccc-clang-cxx defaulting. by Daniel Dunbar · 15 years ago
  14. 8477ee9 Driver: Switch -ccc-* options to using the standard options functionality. by Daniel Dunbar · 15 years ago
  15. 2658f05 OptTable: Allow option groups to be used to define "help groups", which will by Daniel Dunbar · 15 years ago
  16. 9a24251 OptParser: Add HelpHidden flag. by Daniel Dunbar · 15 years ago
  17. 0f4c59c Add gcc's -no-canonical-prefixes option to clang. by Rafael Espindola · 15 years ago
  18. ba8d861 Fix Clang tool translation to forward -fvisibility as separate arguments, the by Daniel Dunbar · 15 years ago
  19. 60e107f Add OptTable::PrintHelp. 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. 56ac85c clang -cc1: Move CompilerInvocation deserialization into CompilerInvocation.cpp, by Daniel Dunbar · 15 years ago
  22. 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
  23. 39ed0b6 clang -cc1: Fix initialization of PreprocessorOptions::TokenCache. by Daniel Dunbar · 15 years ago
  24. 43030a7 clang -cc1: Fix -include-pch now that the test code is in clang-cc. by Daniel Dunbar · 15 years ago
  25. 1c5944c clang -cc1: Initialize LangOptions::{Optimize,NoInline} by Daniel Dunbar · 15 years ago
  26. a28690e Always pass -fmessage-length using separate arguments. by Daniel Dunbar · 15 years ago
  27. 2d8f3e8 clang -cc1: Initialize LangOptions::DollarIdents correctly. by Daniel Dunbar · 15 years ago
  28. 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
  29. b33fbaa Eliminate CodeGenOptions::TimePasses. by Daniel Dunbar · 15 years ago
  30. 3636e1d Eliminate CodeGenOptions::SimplifyLibCalls. by Daniel Dunbar · 15 years ago
  31. 9e61240 clang -cc1: Use proper diagnostics for all parsing errors. by Daniel Dunbar · 15 years ago
  32. e032452 Change CompilerInvocation::CreateFromArgs to report errors using a proper diagnostic engine. by Daniel Dunbar · 15 years ago
  33. 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
  34. 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
  35. e50c167 Add clang -cc1 parsing for LangOptions. by Daniel Dunbar · 15 years ago
  36. 7674352 clang-cc: Change -fsigned-char=0 to -fno-unsigned-char and pass -pic-level using separate args. by Daniel Dunbar · 15 years ago
  37. 7d065d0 Move MainFileName option variable into CodeGenOptions instead of LangOptions. by Daniel Dunbar · 15 years ago
  38. 3fc7e45 Remove header which is bringing libAST in (on MSVC). by Daniel Dunbar · 15 years ago
  39. 6a50ad5 Fix thinko (-fno-builtin != -nobuiltininc). by Daniel Dunbar · 15 years ago
  40. 0ff679f Add clang -cc1 parsing for preprocessor options. by Daniel Dunbar · 15 years ago
  41. d8c7806 Add clang -cc1 parsing for header search options. by Daniel Dunbar · 15 years ago
  42. cdd9686 What the FIXMEs want, the FIXMEs shall have. by Daniel Dunbar · 15 years ago
  43. 3b84f5b Add an arg_iterator, for iterating over a subset of arguments in an ArgList. by Daniel Dunbar · 15 years ago
  44. eb01ac8 Add clang -cc1 parsing for frontend options. by Daniel Dunbar · 15 years ago
  45. 6379476 Add clang -cc1 parsing for preprocessor output options (-E). by Daniel Dunbar · 15 years ago
  46. 6d2eb4d Don't pass -fexceptions=0 (it is the default). by Daniel Dunbar · 15 years ago
  47. 98873ec Fix for Path::isSpecialFile to Path::isRegularFile API in rev 89765. by Edward O'Callaghan · 15 years ago
  48. 56eec2b Fix for PR5568. by Edward O'Callaghan · 15 years ago
  49. 33a33d8 Sketch the rest of the clang -cc1 option definitions, aka fun with C-x C-(. by Daniel Dunbar · 15 years ago
  50. 21affc0 Add clang -cc1 parsing of diagnostic options. by Daniel Dunbar · 15 years ago
  51. 90cb920 Recognize .hpp as a C++ header. by Daniel Dunbar · 15 years ago
  52. e2814d8 Add clang -cc1 parsing of analyzer options. by Daniel Dunbar · 15 years ago
  53. e6c9ae1 Fix refacto, gcc's cc1 needs to see --output-pch=, which is not just an alias by Daniel Dunbar · 15 years ago
  54. 1bed0c3 Driver: Add clang -cc1 dependency output options parsing. by Daniel Dunbar · 15 years ago
  55. 20be8c4 Switch CompilerInvocation::CreateFromArgs to take const char** arguments until Driver itself switches to StringRef. by Daniel Dunbar · 15 years ago
  56. a31100e Pass '-mcpu' 'FOO' instead of '-mcpu=FOO'. by Daniel Dunbar · 15 years ago
  57. 66861e0 Standardize Driver translation to call clang-cc using '-foo' form instead of '--foo'. by Daniel Dunbar · 15 years ago
  58. 50a4487 Add clang -cc1 parsing of CodeGenOptions. by Daniel Dunbar · 15 years ago
  59. 31db76c Driver: Add parsing for TargetOptions to CompilerInvocation::CreateFromArgs. by Daniel Dunbar · 15 years ago
  60. 1be3b3b Fix some default in the option classes, and some CompilerInvocation argification by Daniel Dunbar · 15 years ago
  61. a08304a Driver: Move INPUT and UNKNOWN sentinel options into the OptParser.td file. by Daniel Dunbar · 15 years ago
  62. c06a8d8 Add missing dependency for CMake. by Daniel Dunbar · 15 years ago
  63. 8adfcff Sketch .td file and build system goop for OptTable based clang-cc options. by Daniel Dunbar · 15 years ago
  64. 847abaa Factor out OptTable::ParseArgs, for parsing an entire argument vector. by Daniel Dunbar · 15 years ago
  65. 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
  66. 265e9ef Driver: ArgList doesn't depend on Options.h anymore. by Daniel Dunbar · 15 years ago
  67. a0289fd Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actual options. by Daniel Dunbar · 15 years ago
  68. 9e1f982 Driver: Introduce OptSpecifier class for protecting access to an option id. by Daniel Dunbar · 15 years ago
  69. e4bdae7 Driver: Switch to using explicit {getLast,has}ArgNoClaim functions instead of taking a Claim argument. by Daniel Dunbar · 15 years ago
  70. b32aa51 Driver: Resolve inconsistency in matching options against options which are by Daniel Dunbar · 15 years ago
  71. b827a05 Use Option::matches instead of direct ID comparison. by Daniel Dunbar · 15 years ago
  72. 64bdce3 Driver: Switch to using TableGen'erated Options.inc instead of Options.def file. by Daniel Dunbar · 15 years ago
  73. 27e738d Driver: Split OptTable out into OptTable.{h,cpp} by Daniel Dunbar · 15 years ago
  74. 1ce9cf0 Make MSVC happy. by Daniel Dunbar · 15 years ago
  75. a79a2b5 Driver: Rework OptTable to have no dependency on the options it manages. by Daniel Dunbar · 15 years ago
  76. d8e0e45 Driver: Make local type name more distinct. by Daniel Dunbar · 15 years ago
  77. 1d189e1 Driver: Store Option ID field as unsigned to drop dependency on the options by Daniel Dunbar · 15 years ago
  78. a4f6480 Driver: Switch Options.def to storing flags as a bitmask (instead of mangled by Daniel Dunbar · 15 years ago
  79. 69203e1 Fix passing stdc++ correctly in the FreeBSD toolchain support, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  80. 5e530af Added block type introspection support. by David Chisnall · 15 years ago
  81. 9e5cc6b Add -fblocks, -stack-protector, and -fobjc-nonfragile-abi defaulting to driver, by Daniel Dunbar · 15 years ago
  82. 77544fd Add driver::types::isObjC predicate. by Daniel Dunbar · 15 years ago
  83. c5a97ec Move -fnext-runtime defaulting to driver (and change clang-cc default to by Daniel Dunbar · 15 years ago
  84. 0be42c4 Move -fms-extensions defaulting to driver, instead of using getDefaultLangOptions. by Daniel Dunbar · 15 years ago
  85. 1f95e65 Move char-is-signed defaulting to driver, instead of using by Daniel Dunbar · 15 years ago
  86. f86fedd Add clang -mcpu=native support, patch by Roman Divacky, varioustweaks by me. by Daniel Dunbar · 15 years ago
  87. 76e80c0 Fix for FreeBSD toolchain in regards to CPP, Credit to Roman Divacky. by Edward O'Callaghan · 15 years ago
  88. a6fda12 Adding -fshort-wchar option. by John Thompson · 15 years ago
  89. 838be48 Move -fcolor-diagnostics logic to driver. by Daniel Dunbar · 15 years ago
  90. 55efe14 Move logic for selection -fmessage-length= to driver. by Daniel Dunbar · 15 years ago
  91. 294691e Fix indentation. by Daniel Dunbar · 15 years ago
  92. 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
  93. e6113de Implement support for the -undef command line option, patch by by Chris Lattner · 15 years ago
  94. 4d63f8b Fix -pthread on dragonfly. Patch by Sascha Wildner. by Mike Stump · 15 years ago
  95. dd4fe00 Change the driver to do the Darwin triple mangling itself instead of forwarding by Daniel Dunbar · 15 years ago
  96. ee848a7 Remove some obsolete or unnecessary FIXMEs. by Daniel Dunbar · 15 years ago
  97. 6e8371e PR5328: Allow duplicatic -pedantic (and -pedantic-errors) options. by Daniel Dunbar · 15 years ago
  98. f7fb31f Kill off MakeFormattedString helper function. by Daniel Dunbar · 15 years ago
  99. 607d7f6 Reject -I- in driver instead of clang-cc. by Daniel Dunbar · 15 years ago
  100. 55d3f7a [llvm up] by Douglas Gregor · 15 years ago