1. 1df0fea Add -fuse-line-directive flag to control usage of #line with -E by Reid Kleckner · 11 years ago
  2. a50178c CUDA: Add option to allow host device functions to call host functions by Jacques Pienaar · 11 years ago
  3. 6b07a1c Add -funique-section-names and -fno-unique-section-names options. by Rafael Espindola · 11 years ago
  4. d2e8b04 Add -fno-implicit-modules. by Manuel Klimek · 11 years ago
  5. 8908823 Add -fno-sized-deallocation option for completeness of fix in r229241 in documentation in r229818. by Larisse Voufo · 11 years ago
  6. 0723673 Revert adding hostname to module hash by Ben Langmuir · 11 years ago
  7. e990a3f Rename flags and options to match current naming: from -fdef-sized-delete to -fdefine-sized-deallocation, and from DefaultSizedDelete to DefineSizedDeallocation. by Larisse Voufo · 11 years ago
  8. 5526f4f Revise the implementation logic of sized deallocation: Do not automatically generate weak definitions of the sized operator delete (in terms of unsized operator delete). Instead, provide the funcitonality via a new compiler flag, -fdef-sized-delete. by Larisse Voufo · 11 years ago
  9. a5b195a Revert "Revert r229082 for a bit, it caused PR22577." by David Majnemer · 11 years ago
  10. 7ce96b8 Revert r229082 for a bit, it caused PR22577. by Nico Weber · 11 years ago
  11. abc482e MS ABI: Implement /volatile:ms by David Majnemer · 11 years ago
  12. 541c202 Be more conservative about gethostname()'s truncating behaviour by Ben Langmuir · 11 years ago
  13. 9be5d1e Update r228592 for when gethostname() returns an error by Ben Langmuir · 11 years ago
  14. 521954e Add missing include from r228592 by Ben Langmuir · 11 years ago
  15. d072eea Add the hostname to the module hash to avoid sharing between hosts by Ben Langmuir · 11 years ago
  16. a511cdd Allow to specify multiple -fsanitize-blacklist= arguments. by Alexey Samsonov · 11 years ago
  17. 532d210 Add cc1 option '-fmodule-feature' to add custom values for 'requires' decls by Ben Langmuir · 11 years ago
  18. 8ab003a The prefix 'Ms-' should be 'MS-' by David Majnemer · 11 years ago
  19. 76c9e09 Process the -fno-signed-zeros optimization flag (PR20870) by Sanjay Patel · 11 years ago
  20. 77dc236 Implement command line options for stack probe space by Hans Wennborg · 11 years ago
  21. cb0d13f Adding option -fno-inline-asm to disallow inline asm by Steven Wu · 11 years ago
  22. 0d9593d [cleanup] Re-sort *all* #include lines with llvm/utils/sort_includes.py by Chandler Carruth · 11 years ago
  23. c7af264 Revert "Insert random noops to increase security against ROP attacks (clang)" by JF Bastien · 11 years ago
  24. 4cb5570 Insert random noops to increase security against ROP attacks (clang) by JF Bastien · 11 years ago
  25. 8845952 Reimplement -fsanitize-recover family of flags. by Alexey Samsonov · 11 years ago
  26. 76a4b95 Driver: begin threading frontend support for SymbolRewriter by Saleem Abdulrasool · 11 years ago
  27. 6465d4f Fix use-after-destruction introduced in r224924. by Alexey Samsonov · 11 years ago
  28. fd3cc70 [multilib] Teach Clang's code about multilib by threading by Chandler Carruth · 11 years ago
  29. 0072150 Add driver flags -ftrigraphs, -fno-trigraphs. by Nico Weber · 11 years ago
  30. b62ba51 Disable trigraphs in microsoft mode by default. Matches cl.exe. by Nico Weber · 11 years ago
  31. fd8de1c Fix handling of invalid -O options. by Rafael Espindola · 11 years ago
  32. 2465326 Add a new flag, -fspell-checking-limit=<number> to control how many times we'll do spell checking. Note that spell checking will change the produced AST, so we don't automatically change this value when someone sets -ferror-limit=. With this, merge test typo-correction-pt2.cpp into typo-correction.cpp. by Nick Lewycky · 11 years ago
  33. 3701450 OpenCL C: Add support for a set of floating point arithmetic relaxation flags: by Pekka Jaaskelainen · 11 years ago
  34. 9acb99e3 Reinstate r223753, reverted in r223759 due to breakage of clang-tools-extra. by Richard Smith · 11 years ago
  35. 00a4da7 Revert "[modules] Add experimental -fmodule-map-file-home-is-cwd flag to -cc1." by Duncan P. N. Exon Smith · 11 years ago
  36. 0152e78 [modules] Add experimental -fmodule-map-file-home-is-cwd flag to -cc1. by Richard Smith · 11 years ago
  37. 4a89a06 PR21217: Slightly more eagerly load -fmodule-map-file= files and provide by Richard Smith · 11 years ago
  38. bbc0178 CUDA host device code with two code paths by Reid Kleckner · 11 years ago
  39. 21a0f55 Add flag -f(no-)modules-implicit-maps. by Daniel Jasper · 11 years ago
  40. 561e0aa Extended list of valid frontend options with '-cl-std=CL2.0'. by Anastasia Stulova · 11 years ago
  41. e070b99 Remove -fseh-exceptions in favor of checking the triple by Reid Kleckner · 11 years ago
  42. 75b4f9e Introduce -fsanitize-coverage=N flag by Kostya Serebryany · 11 years ago
  43. a041610 [Sanitizer] Refactor sanitizer options in LangOptions. by Alexey Samsonov · 11 years ago
  44. edf99a9 Introduce a SanitizerKind enum to LangOptions. by Alexey Samsonov · 11 years ago
  45. a6556f7 Objective-C SDK modernization tool. Use its own option by Fariborz Jahanian · 11 years ago
  46. f04f237 Add a new -fmerge-functions -cc1 flag that enables function merging. by Nick Lewycky · 11 years ago
  47. 5a6a2fc Driver: Include driver diagnostics when we --serialize-diagnostics by Justin Bogner · 11 years ago
  48. 795f53b Support using sample profiles with partial debug info (driver) by Diego Novillo · 11 years ago
  49. e842a47 [modules] Initial support for explicitly loading .pcm files. by Richard Smith · 11 years ago
  50. ab506ad Switch C compilations to C11 by default. by Richard Smith · 11 years ago
  51. ae5804f Move -fsanitize-blacklist to LangOpts from CodeGenOpts. NFC. by Alexey Samsonov · 11 years ago
  52. aed71a8 Add experimental clang/driver flag -fsanitize-address-field-padding=N by Kostya Serebryany · 11 years ago
  53. b140a10 CFE Knob for: Add a thread-model knob for lowering atomics on baremetal & single threaded systems by Jonathan Roelofs · 11 years ago
  54. 8f45c9c Add -fseh-exceptions for MinGW-w64 by Reid Kleckner · 11 years ago
  55. 9676a2b Frontend: Reindent Opts.CoverageFile by David Majnemer · 11 years ago
  56. d5478fd Add an option to silence all analyzer warnings. by Anna Zaks · 11 years ago
  57. ed8ecc8 Allow __fp16 as a function arg or return type for AArch64 by Oliver Stannard · 11 years ago
  58. a43604a Convert MC command line flag for fatal assembler warnings into a proper flag. by Joerg Sonnenberger · 11 years ago
  59. dd69ef3 C++1y is now C++14! by Aaron Ballman · 11 years ago
  60. 04ab21d7 Convert a few ownership comments with std::unique_ptr. by Rafael Espindola · 11 years ago
  61. 35f986d Modify behavior of -ast-dump-lookups: if -ast-dump is not also provided, dump by Richard Smith · 11 years ago
  62. f2cf38e Add a cc1 "dump-coverage-mapping" for testing coverage mapping. by Alex Lorenz · 11 years ago
  63. 3be1cb2 Use -Rblah, not -Wblah, to control remark diagnostics. This was always the by Richard Smith · 11 years ago
  64. bcd82af Introduce f[no-]max-unknown-pointer-align=[number] option by Fariborz Jahanian · 11 years ago
  65. ee02499 Add coverage mapping generation. by Alex Lorenz · 11 years ago
  66. b537a3a Add stopgap option -fmodule-implementation-of <name> by Ben Langmuir · 11 years ago
  67. c68237b Driver: bifurcate extended and basic MSC versioning by Saleem Abdulrasool · 11 years ago
  68. 2d2b420 Update for llvm api change. by Rafael Espindola · 11 years ago
  69. f994cef Track IntrusiveRefCntPtr::get() changes from LLVM r212366 by Alp Toker · 11 years ago
  70. f607234 Driver: Handle /GR- in a compatible way with MSVC by David Majnemer · 11 years ago
  71. 913690c Add new debug kind LocTrackingOnly. by Diego Novillo · 11 years ago
  72. f7062b2 Driver: correct behaviour of -fmsc-version=MAJOR by Saleem Abdulrasool · 11 years ago
  73. 9d45e77 Driver: enhance MSC version compatibility by Saleem Abdulrasool · 11 years ago
  74. 4676203 [C++1z] Implement N3981: Disable trigraphs by default in C++1z mode. by Richard Smith · 11 years ago
  75. 86d1259 Frontend: Add a CC1 flag to dump module dependencies to a directory by Justin Bogner · 11 years ago
  76. 18362bf Remove dead code. by Diego Novillo · 11 years ago
  77. dbd4d4c Add -std=c++1z flag for C++17 features. by Richard Smith · 11 years ago
  78. 8a8e554 Include system_error directly. by Rafael Espindola · 11 years ago
  79. 3ae0620 There is no std::errc:success, remove the llvm one. by Rafael Espindola · 11 years ago
  80. d23ec94 Add flags -Rpass-missed and -Rpass-analysis. by Diego Novillo · 11 years ago
  81. a670c20 No longer allow the -std options to entirely override the -x language option. This allows -x cuda -std=c++11, for instance. by Aaron Ballman · 11 years ago
  82. 49a2790 [C++11] Use 'nullptr'. Frontend edition. by Craig Topper · 11 years ago
  83. c7dc062 Make DiagnosticsEngine non-copyable by Alp Toker · 11 years ago
  84. 279b97c Enable standalone-debug by default on FreeBSD by Ed Maste · 11 years ago
  85. 62849c6 Driver: parse -mcmodel earlier by Saleem Abdulrasool · 11 years ago
  86. 3d23c42 If an instantiation of a template is required to be a complete type, check by Richard Smith · 11 years ago
  87. d113788e Speculative fix to unbreak the buildbots that fail with compiler errors. by Argyrios Kyrtzidis · 11 years ago
  88. 1b1256a [Modules] Add the resource-dir to the module hash. by Argyrios Kyrtzidis · 11 years ago
  89. b5b622a Drop non-cfi assembly support from clang. by Rafael Espindola · 11 years ago
  90. fe6b880 [PCH/Modules] Don't tie TargetOptions::LinkerVersion to a module/PCH, it's a driver only thing and doesn't affect any language/preprocessor/etc. semantics. by Argyrios Kyrtzidis · 11 years ago
  91. 2255f2c Initial implementation of -modules-earch-all option, for searching for symbols in non-imported modules. by John Thompson · 11 years ago
  92. 829b170 Add support for optimization reports. by Diego Novillo · 12 years ago
  93. 8832c06 Honour -ivfsoverlay in ASTUnit to match clang by Ben Langmuir · 12 years ago
  94. 962b38e Add -fmodules-strict-decluse to check that all headers are in modules by Daniel Jasper · 12 years ago
  95. 7e2fd94 Support for -Wa,-compress-debug-sections. by David Blaikie · 12 years ago
  96. 18fa48c Move the -i[no-]system-prefix options from CC1Options.td to Options.td. by Alexander Kornienko · 12 years ago
  97. 2bfcaab [msan] -fsanitize-memory-track-origins=[level] flag and docs. by Evgeniy Stepanov · 12 years ago
  98. fcdc45f Creating a printing policy for "half": by Yunzhong Gao · 12 years ago
  99. 6d0753d [Modules] Emit the module file paths as dependencies of the PCH when we are building one. by Argyrios Kyrtzidis · 12 years ago
  100. dcf7386 Add an option -fmodules-validate-system-headers by Ben Langmuir · 12 years ago