1. 75f6a66 Respect -fno-canonical-prefixes when deciding where to generate .gcno and .gcda by Nick Lewycky · 12 years ago
  2. 24697b0 [Sanitizer] If -fsanitize-blacklist= option is not explicitly specified, make Clang look for the default sanitizer-specific blacklist in the resource directory. by Alexey Samsonov · 12 years ago
  3. 98654c9 More grammar. by Eric Christopher · 12 years ago
  4. a880b19 Add support for -fvisibility-ms-compat. by John McCall · 12 years ago
  5. f110a9c Fix up grammar a bit. by Eric Christopher · 12 years ago
  6. 6c7db89 Unify some "kernel or kext" conditionals. by Eric Christopher · 12 years ago
  7. 3fcdea7 Add a comment. by Eric Christopher · 12 years ago
  8. cfc01e4 Clean up comment. by Eric Christopher · 12 years ago
  9. d4440c2 Grammar. by Eric Christopher · 12 years ago
  10. 0798b69 Unify some code. No functional change. by Eric Christopher · 12 years ago
  11. f0c5456 Use -mno-implicit-float by default for kernel/kext code. <rdar://13177960> by Bob Wilson · 12 years ago
  12. 48559ba Delete an extra blank line. by Bob Wilson · 12 years ago
  13. 7a9e91a Recognize -mno-implicit-float option for x86 as well as ARM. <rdar://13180731> by Bob Wilson · 12 years ago
  14. 3f6f51e Excise <cctype> from Clang (except clang-tblgen) in favor of CharInfo.h. by Jordan Rose · 12 years ago
  15. 250172a Form the default -fmodules-cache-path= properly. by Douglas Gregor · 12 years ago
  16. 953a61f Rename -fmodule-cache-path <blah> to -fmodules-cache-path=<blah> for consistency. by Douglas Gregor · 12 years ago
  17. 2a06085 Introduce -fmodules-ignore-macro=NNN to ignore a macro when building/loading modules. by Douglas Gregor · 12 years ago
  18. 40a94e2 Adding armv7l default to cortex-a8 by Renato Golin · 12 years ago
  19. c706c8e Driver and option support for -gsplit-dwarf. This is a part of by Eric Christopher · 12 years ago
  20. 4f4e2af Spaces instead of tabs. by Eric Christopher · 12 years ago
  21. 2821e18 Add some missing PPC cpus by Bill Schmidt · 12 years ago
  22. 3c6aaeb Add -mqpx and -mno-qpx feature flags to toggle use of the PPC QPX vector instruction set by Hal Finkel · 12 years ago
  23. 75dbc71 [driver] Don't try to generate diagnostic information for dsymutil crashes. by Chad Rosier · 12 years ago
  24. 5ccd3d0 Add PPC A2Q core and BG/Q preprocessor definitions by Hal Finkel · 12 years ago
  25. 199402b Enable -fno-altivec, -mno-altivec for PowerPC. by Bill Schmidt · 12 years ago
  26. c264e16 Add support for AArch64 target. by Tim Northover · 12 years ago
  27. 8425a54 [driver] Clear the FailureResultFiles when initializing clang diagnostics. Also, by Chad Rosier · 12 years ago
  28. 78d85b1 [ubsan] Implement the -fcatch-undefined-behavior flag using a trapping by Chad Rosier · 12 years ago
  29. a16355c [driver] Refactor the driver so that a failing commands doesn't prevent by Chad Rosier · 12 years ago
  30. a522987 Fix comment. by Eric Christopher · 12 years ago
  31. 3e335c1 Print warning instead of error if optional ASan features are enabled w/o specifying -fsanitize=address by Alexey Samsonov · 12 years ago
  32. 9d71863 [driver] Associate a JobAction with each result file. This enables the driver by Chad Rosier · 12 years ago
  33. 6ea3a2a [Driver] Don't remove non-regular files that were outputs. by Daniel Dunbar · 12 years ago
  34. b2e2157 [ms-inline asm] Remove the -fenable-experimental-ms-inline-asm flag. MS-style by Chad Rosier · 12 years ago
  35. 454028e [ASan] Link with the dynamic runtime on OS X by Alexander Potapenko · 12 years ago
  36. 2cb3d30 Port r172856: 'Include ubsan runtime even when building a shared library. We don't require executable to be linked with UBSan.' to Mac by Alexey Samsonov · 12 years ago
  37. 4bdc604 Add top-level Clang flag -f(no-)sanitize-address-zero-base-shadow that makes AddressSanitizer use bottom of the address space for the shadow memory. On Linux it can be used with -fPIE/-pie to improve performance. by Alexey Samsonov · 12 years ago
  38. 79188ae Include ubsan runtime even when building a shared library. We don't require the executable to be linked with UBSan. by Richard Smith · 12 years ago
  39. 0234179 We want the dwarf AT_producer for assembly source files to match clang's by Kevin Enderby · 12 years ago
  40. 17d481f Do not pass -pie flag to linker if -shared specified. This matches by Peter Collingbourne · 12 years ago
  41. df96e02 Add initial rough support for synthesizing linker options when passed by Chandler Carruth · 12 years ago
  42. a40548c Fix uninitialized bool flag access in SanitizerArgs parser by Alexey Samsonov · 12 years ago
  43. f43b721 Add -fmodules-autolink/-fno-modules-autolink (defaults to on) so that by Douglas Gregor · 12 years ago
  44. 3214254 [driver/Darwin] Adjust SDKROOT handling code to not generate "-isysroot /". by Daniel Dunbar · 12 years ago
  45. 700d4e4 Refactor the x86 CPU name logic in the driver and pass -march and -mcpu by Chandler Carruth · 12 years ago
  46. cfa88f8 Remove useless 'llvm::' qualifier from names like StringRef and others that are by Dmitri Gribenko · 12 years ago
  47. ca1ad50 ToolChains: Minor touchup to use correct type, avoid truncation. by Will Dietz · 12 years ago
  48. e1d792f [Mips] Pass a combination of +soft-float and -mips16-hard-float flags to by Simon Atanasyan · 12 years ago
  49. b171852 Prepare for the upcoming version of Debian (jessie) by Sylvestre Ledru · 12 years ago
  50. 6cc2a68 Silence some warnings and allow passing down some feature flags to the linker. by Rafael Espindola · 12 years ago
  51. 2d382d1 [ubsan] Recover by default, use -fno-sanitize-recover to disable. by Will Dietz · 12 years ago
  52. 5ba0c8e Fix a typo that caused a few standard library implementations of sort to by Chandler Carruth · 12 years ago
  53. f175765 Try to re-structure the GCCVersion comparison routine to make it easier by Chandler Carruth · 12 years ago
  54. 34ef11b Support -fsanitize-memory-track-origins. by Evgeniy Stepanov · 12 years ago
  55. ab13751 Add ARM cortex-r5 subtarget as available mcpu by Quentin Colombet · 12 years ago
  56. bb6a7e0 Update comments. by Rafael Espindola · 12 years ago
  57. a367a02 Fix Generic_GCC::GCCVersion::operator< by Rafael Espindola · 12 years ago
  58. 5b9268f Fix code that attempted to produce a diagnostic with one DiagnosticEngine, then by Richard Smith · 12 years ago
  59. d7dfd98 [driver] Have -isysroot warn on nonexistent paths. rdar://12282267 by Chad Rosier · 12 years ago
  60. 0f6ef28 Enable the loop vectorizer in clang via -fvectorize by Nadav Rotem · 12 years ago
  61. 27e2b98 Add support for passing the main file name down to the assembler by Eric Christopher · 12 years ago
  62. d566df6 Fix PR14625 by teaching the driver to detect PWD for assembly files. by Chandler Carruth · 12 years ago
  63. de39d17 Add support for current Ubuntu Quantal and the upcoming Raring. by Rafael Espindola · 12 years ago
  64. 27fa236 Initial support for FreeBSD on ARM. Patch by Andrew Turner. by Rafael Espindola · 12 years ago
  65. b2c0887 [driver] Don't warn about an unused -flto option. rdar://12851905 by Chad Rosier · 12 years ago
  66. 04ee66e clang/lib/Driver/Driver.cpp: Split COMPILER_PATH according to llvm::sys::PathSeparator, that is ';' in Win32 hosts. by NAKAMURA Takumi · 12 years ago
  67. 443c999 Add -fslp-vectorize to enable bb-vectorize by Hal Finkel · 12 years ago
  68. c04d093 [driver] Add the -fvectorize flag to enable the loop vectorization passes. by Chad Rosier · 12 years ago
  69. d56f403 Add support to Darwin for the -export_dynamic' flag to the linker. by Bill Wendling · 12 years ago
  70. 3d8d422 Hexagon TC: forward appropriate args to assembler by Matthew Curtis · 12 years ago
  71. 2a907f8 Driver/ToolChains.cpp: Add the name CentOS5 32bit gcc44 (aka i386-redhat-linux6E). by NAKAMURA Takumi · 12 years ago
  72. 1dbaef5 Hexagon TC: add cc1 defaults for hexagon-gcc compatibility by Matthew Curtis · 12 years ago
  73. c57d158 Revert r169557. It seems that the test is too restricted by Logan Chien · 12 years ago
  74. cd15652 Add i686-linux-android for gcc toolchain detection. by Logan Chien · 12 years ago
  75. 33c95f1 Hexagon TC: Add/improve support for small data threshold, pic, pie by Matthew Curtis · 12 years ago
  76. 5fdf350 Hexagon TC: Reimplement Link::ConstructJob to call linker directly by Matthew Curtis · 12 years ago
  77. 6781415 Hexagon TC: Move getHexagonTargetCPU from Tools.cpp to ToolChains.cpp by Matthew Curtis · 12 years ago
  78. b3489a0 Hexagon TC: Update toolchain to add appropriate include paths by Matthew Curtis · 12 years ago
  79. 15490fd [driver, ms-inline asm] MS-Style inline assembly is controlled by the by Chad Rosier · 12 years ago
  80. 99469f7 Reuse an existing diagnostic for tsan/msan needing -pie error. by Evgeniy Stepanov · 12 years ago
  81. 88a8fa3 Driver.cpp: Restore clang/Config/config.h to be included at last not to prevent llvm-config.h. by NAKAMURA Takumi · 12 years ago
  82. 1d15398 Add -whole-archive around the ASan runtime archive in the link command. by Chandler Carruth · 12 years ago
  83. 45b2738 Currently, with -fsanitize=address, the driver appends libclang_rt.asan.a to by Matt Beaumont-Gay · 12 years ago
  84. 5542635 ToolChains.cpp: Fixup r169260, clang/Config/config.h needs to be listed *last*, or llvm/Config/llvm-config.h could not be read in header files. by NAKAMURA Takumi · 12 years ago
  85. 00a3ccc Autotools has the same include guard for both Clang and LLVM's config.h. by Chandler Carruth · 12 years ago
  86. 55fc873 Sort all of Clang's files under 'lib', and fix up the broken headers uncovered. by Chandler Carruth · 12 years ago
  87. 91ecfa6 Add Clang flags -fsanitize-blacklist and -fno-sanitize-blacklist. Make this flag usable for ASan. Blacklisting can be used to disable sanitizer checks for particular file/function/object. by Alexey Samsonov · 12 years ago
  88. 09ccf39 Add -fsanitize=memory. by Evgeniy Stepanov · 12 years ago
  89. bda07ac [MIPS] Add -mxgot/-mno-xgot command line options by Simon Atanasyan · 12 years ago
  90. 0565037 Remove restriction on combining ubsan with asan or tsan. This has worked for a while. by Richard Smith · 12 years ago
  91. 74632aa Add ARM cortex-a5 subtarget by Quentin Colombet · 12 years ago
  92. 398b8e8 Revert commit revision r168953, to change the commit message, which was empty by Quentin Colombet · 12 years ago
  93. b3233f5 by Quentin Colombet · 12 years ago
  94. 4d1a6e4 This patch exposes to Clang users three more sanitizers are experimental features of ASan: by Alexey Samsonov · 12 years ago
  95. 6716d94 Make sure that we put the rest of the sanitizer libraries on the link line by Eric Christopher · 12 years ago
  96. 586a061 [driver] -mkernel implies -mstrict-align; don't add the redundant option. by Chad Rosier · 12 years ago
  97. 3325b16 Refactor -fsanitize, -f*-sanitizer arguments parsing. Provide a more careful diagnostic for invalid sets of sanitizers by Alexey Samsonov · 12 years ago
  98. f8fc627 Remove an extra semicolon. by Chad Rosier · 12 years ago
  99. 17c874a Remove some dead code. CLANG_IS_PRODUCTION is now just a build flag and by Rafael Espindola · 12 years ago
  100. b854036 Add -fsanitize=integer for reporting suspicious integer behaviors. by Will Dietz · 12 years ago