1. c4475ee Don't test for ASM output but for IR output. by Bill Wendling · 12 years ago
  2. 1fec8fc clang/test/CodeGenCXX/debug-info-zero-length-arrays.cpp: Add explicit triple, x86_64-unknown-unknown. It was incompatible to i686. by NAKAMURA Takumi · 12 years ago
  3. 003ec23 Add a 'count' field to the DWARF subrange. by Bill Wendling · 12 years ago
  4. 60ef8b7 clang/test/Index/comment-objc-decls.m: Try to fix r169193, to add x86_64-darwin. by NAKAMURA Takumi · 12 years ago
  5. 482b4fd Testing objective-C declarations embedded in by Fariborz Jahanian · 12 years ago
  6. cdeb7d5 Have clang use LLVM IR's fast-math flags when in FastMath or FiniteMathOnly modes. Test cases included. by Michael Ilseman · 12 years ago
  7. e0af843 clang/test/Driver/fsanitize-blacklist.c: Mark it as XFAIL:cygming, due to PR12920. by NAKAMURA Takumi · 12 years ago
  8. 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
  9. 96a6639 Fix PR14474: don't emit debug info for interface types in -gline-tables-only mode. by Alexey Samsonov · 12 years ago
  10. ad95481 [ubsan] Add flag to enable recovery from checks when possible. by Will Dietz · 12 years ago
  11. bda07ac [MIPS] Add -mxgot/-mno-xgot command line options by Simon Atanasyan · 12 years ago
  12. ac55865 Fix a test that was redefining FileCheck variables while referencing old ones. by Eli Bendersky · 12 years ago
  13. 4247d9c Switch to using -### as mentioned by chandlerc. by Joey Gouly · 12 years ago
  14. acb860f Add -emit-llvm to test/Driver/fsanitize.c to stop this failing on the ARM bot. Approved by d0k. by Joey Gouly · 12 years ago
  15. 19c8ce0 Try to make the source location information for token pastes a bit more consistent. by Eli Friedman · 12 years ago
  16. 0565037 Remove restriction on combining ubsan with asan or tsan. This has worked for a while. by Richard Smith · 12 years ago
  17. 464a01a Fix the determination of whether a capture refers to an enclosing by Douglas Gregor · 12 years ago
  18. 6e6330c Don't emit a warning with an input/output parameter. We assume the user knows what they're doing here. by Bill Wendling · 12 years ago
  19. 5a98f1d Fix test for Windows path separators by Douglas Gregor · 12 years ago
  20. 14afab3 Teach the serialized diagnostic writer to clone() itself, sharing by Douglas Gregor · 12 years ago
  21. e2dbaa9 Don't warn if the input size is less than the register size. Also don't warn if by Bill Wendling · 12 years ago
  22. d87de7b Make -Wtautological-constant-out-of-range-compare behave sanely for enums with a signed fixed type. by Eli Friedman · 12 years ago
  23. 6c32543 When we're emitting a diagnostic with a source location in an imported by Douglas Gregor · 12 years ago
  24. fafd101 Support for #pragma region/endregion for MSVC compatibility. Patch thanks to pravic! by Aaron Ballman · 12 years ago
  25. 830ea5b When an error occurs while building a module on demand, provide "While by Douglas Gregor · 12 years ago
  26. ecdc8d3 Fix the computation of highlight ranges so we produce something sane when by Eli Friedman · 12 years ago
  27. e5965df Add a test case for the new cortex-a5 switch by Quentin Colombet · 12 years ago
  28. 463d909 Keep track of modules that have failed to build. If we encounter an by Douglas Gregor · 12 years ago
  29. db748a3 Fix a small calling-convention bug for x86-32. PR14453. by Eli Friedman · 12 years ago
  30. 4d1a6e4 This patch exposes to Clang users three more sanitizers are experimental features of ASan: by Alexey Samsonov · 12 years ago
  31. 2ec5f55 Make the test less sensitive to DWARF emission implementation details. by Eli Bendersky · 12 years ago
  32. 6716d94 Make sure that we put the rest of the sanitizer libraries on the link line by Eric Christopher · 12 years ago
  33. 1fadc0e Use newer command line option here. by Eric Christopher · 12 years ago
  34. 4f000c3 Remove duplicate test run lines. by Eric Christopher · 12 years ago
  35. 8b8a09e Merge function types in C. by Rafael Espindola · 12 years ago
  36. 53c61c5 [-cxx-abi microsoft] Also spill the argument-back-references context when mangling templates by Timur Iskhodzhanov · 12 years ago
  37. 8426890 Reject uses of __int128 on platforms that don't support it. Also move the ugly by Richard Smith · 12 years ago
  38. a70779f Fix crash-on-invalid. <rdar://problem/12765391>. by Eli Friedman · 12 years ago
  39. afb4918 The declaration of a special member can require overload resolution to be by Richard Smith · 12 years ago
  40. 9c04666 Correctly handle IntegralToBool casts in C++ in the static analyzer. Fixes <rdar://problem/12759044>. by Ted Kremenek · 12 years ago
  41. 586a061 [driver] -mkernel implies -mstrict-align; don't add the redundant option. by Chad Rosier · 12 years ago
  42. 52b501c Implement C++11 [dcl.attr.grammar] p4: If an attribute-specifier-seq appertains to a friend declaration, that declaration shall be a definition. by Michael Han · 12 years ago
  43. b15c898 objective-C blocks: Make sure that identical logic is used by Fariborz Jahanian · 12 years ago
  44. a70c3f8 Per C++11 [except.spec]p2, rvalue references are not permitted in exception specifications. by Richard Smith · 12 years ago
  45. 21173b1 PR14388: An array or function type in an exception specification should be by Richard Smith · 12 years ago
  46. 060f34d ABI: comments from Eli on r168820. by Manman Ren · 12 years ago
  47. f51c61c ABI: modify CreateCoercedLoad and CreateCoercedStore to not use load or store of by Manman Ren · 12 years ago
  48. f641166 PR13098: If we're instantiating an overloaded binary operator and we could by Richard Smith · 12 years ago
  49. 3325b16 Refactor -fsanitize, -f*-sanitizer arguments parsing. Provide a more careful diagnostic for invalid sets of sanitizers by Alexey Samsonov · 12 years ago
  50. 30cddae Teach Lexer::getSpelling about raw string literals. Specifically, if a raw by Richard Smith · 12 years ago
  51. acf796b Store on the CXXRecordDecl whether the class has, or would have, a copy by Richard Smith · 12 years ago
  52. b8abff6 C++ core issue 1344, PR10618: promote "addition of default argument makes this by Richard Smith · 12 years ago
  53. 1994e39 Fix another false positive due to a CXX temporary object appearing in a C initializer. by Ted Kremenek · 12 years ago
  54. bd8a11e Provide stop-gap solution to crash reported in PR 14436. by Ted Kremenek · 12 years ago
  55. 82c458e objective-C arc: load of a __weak object happens via call to by Fariborz Jahanian · 12 years ago
  56. b854036 Add -fsanitize=integer for reporting suspicious integer behaviors. by Will Dietz · 12 years ago
  57. 5e7b43e Remove outdated FIXME; should have removed that in r160782 by Timur Iskhodzhanov · 12 years ago
  58. 93308b9 clang/test/lit.cfg: Disable dev-fd-fs on cygwin for now. by NAKAMURA Takumi · 12 years ago
  59. 55f6c33 Test for r168674. by Eli Friedman · 12 years ago
  60. c9715fc This patch addresses an incompatibility relative to the 64-bit PowerPC ELF ABI. by Bill Schmidt · 12 years ago
  61. 6e99f9f [analyzer] Fix test to work on non-LP64 systems. by Jordan Rose · 12 years ago
  62. ec351f1 Add a testcase that r168411 would break. by Rafael Espindola · 12 years ago
  63. acf3612 Frontend: Create a virtual file for named pipe inputs. by Daniel Dunbar · 12 years ago
  64. 2e39713 Improve diagnostic on C++11 attribute specifiers that appear at wrong syntactic locations around class specifiers. by Michael Han · 12 years ago
  65. 9e4bafc check that always_inline attribute works with -fno-inline by Sebastian Pop · 12 years ago
  66. dac6cd5 [analyzer] Fix a crash reported in PR 14400. by Anna Zaks · 12 years ago
  67. 79b7cc5 Fix PR14413 - incorrect mangling of anonymous namespaces with -cxx-abi microsoft by Timur Iskhodzhanov · 12 years ago
  68. 73ed67c PR14428: When instantiating a 'new' expression, if we had a non-dependent by Richard Smith · 12 years ago
  69. 1c80b52 Add a basic testcase for the "variable is not needed" warning and one that by Rafael Espindola · 12 years ago
  70. 1059653 Fix test case for linking with sanitizer opts added in r168428. by Alexey Samsonov · 12 years ago
  71. 63b6ebe Sema: Provide a valid source location when instantiating templates based on a CXXDefaultArgExpr. by Benjamin Kramer · 12 years ago
  72. 4875bf2 Check that we don't warn on this testcase. This is basically a test that by Rafael Espindola · 12 years ago
  73. 8548908 PR14306: Move -fbounds-checking to -fsanitize=bounds. by Joey Gouly · 12 years ago
  74. 746619a Fix regression in r168477. Use canonical decl when looking for base class by Richard Smith · 12 years ago
  75. f62c690 Fix CXXRecordDecl::forallBases to not look through bases which are dependent by Richard Smith · 12 years ago
  76. 1a6c43a Test that we correctly deal with multiple copy constructors when detecting by Richard Smith · 12 years ago
  77. a6b2581 Fix the '-fuse-init-array' option to actually be an option. by Chandler Carruth · 12 years ago
  78. 39ad0f0 SemaCXX: an enumeral type can be of character or boolean type in a C++11 enum class. Make sure we create a literal of the right type. by Benjamin Kramer · 12 years ago
  79. 803dd9e Try to fix test from r168428 on mingw bot by Alexey Samsonov · 12 years ago
  80. 3ffa91a clang/test/Driver/x86_64-nacl-defines.cpp: Specify filename generated. by NAKAMURA Takumi · 12 years ago
  81. 69b77d7 [Sanitizer] force linking with static sanitizer runtimes on Darwin even if they are not found in resource directory. Add test checking sanitizer linker flags on Darwin. by Alexey Samsonov · 12 years ago
  82. 0061fe4 Use color for -ast-dump-filter only when it is supported by Dmitri Gribenko · 12 years ago
  83. 1a5bd5d PR14381: Never skip constexpr function bodies when code-completing. We may need by Richard Smith · 12 years ago
  84. 728948f When adding a NamedDecl to a correction, add the underlying Decl (via by Kaelyn Uhrain · 12 years ago
  85. 529a73d Add -ldl for non-static libgcc in Android. by Logan Chien · 12 years ago
  86. 18c2842 Enable -fuse-init-array for Android X86/MIPS. by Logan Chien · 12 years ago
  87. 7a29070 clang/test: Suppress two tests on LLP64 target, Windows x64. by NAKAMURA Takumi · 12 years ago
  88. 7ce816a Completely re-work how the Clang driver interprets PIC and PIE options. by Chandler Carruth · 12 years ago
  89. bf823c0 clang/test/Sema/warn-documentation.cpp: Try to fix up the testcase in r168277. by NAKAMURA Takumi · 12 years ago
  90. 36cbbe9 Documentation parsing: propely handle a lone '\endverbatim' and emit a warning. by Dmitri Gribenko · 12 years ago
  91. 5fa6676 objective-C: Do not issue deprecated warning about implementation by Fariborz Jahanian · 12 years ago
  92. 6d926ae Fix crash on end-of-file after \ in a char literal, fixes PR14369. by Nico Weber · 12 years ago
  93. 3f03b58 Prevent premature macro expansion in __has_builtin, __has_feature, by Andy Gibbs · 12 years ago
  94. 97f8461 Made the "expected string literal" diagnostic more expressive by Andy Gibbs · 12 years ago
  95. 02a1768 Refactored duplicate string literal lexing code within Preprocessor, into a by Andy Gibbs · 12 years ago
  96. b9971ba Fix handling of invalid uses of the __has_warning builtin macro by Andy Gibbs · 12 years ago
  97. 7baa711 Enable inlining of 4 byte atomic ops on ppc32, 8 byte atomic ops on ppc64. by Benjamin Kramer · 12 years ago
  98. faf3538 Add missing features for misc x86 CPUs to CPU feature translation. Patch by Jung-uk Kim. by Eli Friedman · 12 years ago
  99. e60729a Testcase overriding-ftemplate-comments.cpp: use [[@LINE]] to make it less fragile. by Dmitri Gribenko · 12 years ago
  100. ecf1626 [driver] Add the missing TY_PP_ObjCXX_Alias case to the isCXX function. by Chad Rosier · 12 years ago