1. 8eb5b29 Missed tests for half FP support by Anton Korobeynikov · 13 years ago
  2. 2be4607 Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic types. by Eli Friedman · 13 years ago
  3. 663b26a Harden test for windows paths. by Benjamin Kramer · 13 years ago
  4. 762bb9d Update all tests other than Driver/std.cpp to use -std=c++11 rather than by Richard Smith · 13 years ago
  5. 73fb350 Recommit: by Eric Christopher · 13 years ago
  6. 6700415 Add returns_twice to functions that are known to return twice. This implements by Rafael Espindola · 13 years ago
  7. 28e0635 Revert file/scope handling patches. gdb testing revealed a couple of bugs. by Eric Christopher · 13 years ago
  8. 4b2d549 Start handling debug line and scope information better: by Eric Christopher · 13 years ago
  9. 8a1d6a5 PR11062: Make C99 inlining work properly for names with associated builtin libcalls. by Eli Friedman · 13 years ago
  10. 276b061 Initial implementation of __atomic_* (everything except __atomic_is_lock_free). by Eli Friedman · 13 years ago
  11. 71c7efa Added natural stack alignment to target-data.c test case. by Lang Hames · 13 years ago
  12. f87cced Propagate __attribute__((returns_twice)) from C to IL. by Rafael Espindola · 13 years ago
  13. a8a16d5 I had meant to locally revert this test. by John McCall · 13 years ago
  14. 01f151e ANSI C requires that a call to an unprototyped function type succeed by John McCall · 13 years ago
  15. 0c706c2 Add list initialization for complex numbers in C. Essentially, this allows "_Complex float x = {1.0f, 2.0f};". See changes to docs/LanguageExtensions.html for a longer description. by Eli Friedman · 13 years ago
  16. 285cfd8 Throw the switch to convert clang to the new exception handling model! by Bill Wendling · 13 years ago
  17. b5f8f07 test/CodeGen/sse-builtins.c: Make this host-independent to unbreak posix-unlike hosts. by NAKAMURA Takumi · 13 years ago
  18. 7c06f6b Tweak *mmintrin.h so that they don't make any bad assumptions about alignment (which probably has little effect in practice, but better to get it right). Make the load in _mm_loadh_pi and _mm_loadl_pi a single LLVM IR instruction to make optimizing easier for CodeGen. by Eli Friedman · 13 years ago
  19. eb43f4a Re-commit r139643. by Eli Friedman · 13 years ago
  20. a179b53 Revert r139643 while I look into it; it's breaking selfhost. by Eli Friedman · 13 years ago
  21. 93013b2 Make clang use Acquire loads and Release stores where necessary. by Eli Friedman · 13 years ago
  22. 6f2ec51 Make this test portable on Win32. by Julien Lerouge · 13 years ago
  23. b1f251f Missed a %local use; hopefully this clears this test up. by John McCall · 13 years ago
  24. 42f19be clang part of r139458; un-XFAIL testcase. by Eli Friedman · 13 years ago
  25. 5c988bd Revision 139454 fixed a broken assert in LLVM, which causes by Richard Trieu · 13 years ago
  26. bf379a6 Make this test not depend on unnecessary details and IR variable names. by John McCall · 13 years ago
  27. 77f68bb Bring llvm.annotation* intrinsics support back to where it was in llvm-gcc: can by Julien Lerouge · 13 years ago
  28. acae011 Carry the debug information from single exit unified return block by Eric Christopher · 13 years ago
  29. 13db5cf Treat the weak export of block runtime symbols as a deployment-target by John McCall · 13 years ago
  30. 87198c3 The frexp, modf, and remquo builtins are not 'const'. by Jakob Stoklund Olesen · 13 years ago
  31. 900693b Make sure the FunctionDecl's created by "#pragma weak" have correct ParmVarDecl's. PR10878. by Eli Friedman · 13 years ago
  32. c83b975 Switch clang over to using fence/atomicrmw/cmpxchg instead of the intrinsics (which will go away). LLVM CodeGen does almost exactly the same thing with these and the old intrinsics, so I'm reasonably confident this will not break anything. by Eli Friedman · 13 years ago
  33. 0f2c1ce Revise test and see if it passes with a release-built clang. by Fariborz Jahanian · 13 years ago
  34. d295b82 blocks: Support capturing complex variable in block. // rdar://10033896 by Fariborz Jahanian · 13 years ago
  35. 776b790 revert patch in r139020 by Fariborz Jahanian · 13 years ago
  36. da8e571 blocks: Support capturing complex variable in block. // rdar://10033896 by Fariborz Jahanian · 13 years ago
  37. 410ffb2 Track whether an AggValueSlot is potentially aliased, and do not by John McCall · 13 years ago
  38. 3f7eb9a Add testcase for r138411 by Bruno Cardoso Lopes · 13 years ago
  39. 736a9c2 Make constant aggregate constant initializers private linkage. by Eric Christopher · 13 years ago
  40. b9dbab1 block IRgen - Fixes a crash when determining if given block variable by Fariborz Jahanian · 13 years ago
  41. 2873aee Make sure we don't inline functions marked with __attribute__((naked)). <rdar://problem/9973228> by Eli Friedman · 13 years ago
  42. c0b850c Add new test. Remove one outdated test. by Devang Patel · 13 years ago
  43. fe88395 Robustify test, there is no need to check metadata number which can change. by Devang Patel · 13 years ago
  44. 041087c 'pure' and 'const' functions should also be marked nounwind. Migrate by Eric Christopher · 13 years ago
  45. a40b7f2 Update clang tests for r137527. by Eli Friedman · 13 years ago
  46. 2e4f44f Add tests for string literal concatenation. by Craig Topper · 13 years ago
  47. 2fa4e86 Add support for C++0x raw string literals. by Craig Topper · 13 years ago
  48. b8fca90 Add support for using anonymous bitfields (e.g., int : 0) to enforce alignment. by Chad Rosier · 13 years ago
  49. 3f1661d Output to /dev/null, not "0" by Matt Beaumont-Gay · 13 years ago
  50. fc54016 Formatting. by Chad Rosier · 13 years ago
  51. 61a6221 Add partial support for using anonymous bitfields (e.g., int : 0) to enforce by Chad Rosier · 13 years ago
  52. a5e19c6 Emit wide string literals with the appropriate alignment. by John McCall · 13 years ago
  53. 4ab0024 For APCS the alignment of bitfield types is *not* respected when laying out by Chad Rosier · 13 years ago
  54. 8d28897 Delete one of the old tests that was ported over to Clang. The test is by Chandler Carruth · 13 years ago
  55. 194f06a Handle "homogeneous aggregates" as required by the ARM AAPCS-VFP ABI. by Bob Wilson · 13 years ago
  56. 40f9c30 When rewriting a call to a K&R function to lead to a well-prototyped by John McCall · 13 years ago
  57. e164c18 Implements alignment for long long and double types in va_arg on ARM AAPCS. by Rafael Espindola · 13 years ago
  58. 895d422 Add support for the 'Q' arm memory constraint. by Eric Christopher · 13 years ago
  59. 53afad5 This patch makes the string/character literal tests run in C, by Douglas Gregor · 13 years ago
  60. 93f1322 Fix assertion failure in CodeGen where the input operand to an asm by Peter Collingbourne · 13 years ago
  61. 27f1e7e test/CodeGen/2004-03-16-AsmRegisterCrash.c: XTARGET should accept the part of triplet. ("x86" is not the part of triplet) by NAKAMURA Takumi · 13 years ago
  62. a17f0c4 test/CodeGen/struct-matching-constraint.c: Fixup not to emit garbage to source tree. by NAKAMURA Takumi · 13 years ago
  63. e1adf81 test/CodeGen/struct-init.c, struct-matching-constraint.c: Tweak commandline, or they would not be recognized as armv7 on some hosts. by NAKAMURA Takumi · 13 years ago
  64. 886fefa Fix thinko in last checkin. by Eric Christopher · 13 years ago
  65. 95ee667 Remove the need for a header and specify a triple so that the type by Eric Christopher · 13 years ago
  66. 55528b2 Fix this up for clang codegen versus llvm-gcc. by Eric Christopher · 13 years ago
  67. 0b2b766 Fix this test to work for arm and on all platforms. by Eric Christopher · 13 years ago
  68. d3e46dd Add a triple to this test and make sure it passes on arm where it was by Eric Christopher · 13 years ago
  69. 0bbe4b1 Correct the triple here. by Eric Christopher · 13 years ago
  70. 023b592 This works on arm. by Eric Christopher · 13 years ago
  71. 16a91a4 Apparently this does work on arm. by Eric Christopher · 13 years ago
  72. b655803 This was meant to test arm anyhow, make the registers agree with the by Eric Christopher · 13 years ago
  73. 2a077fd Remove this test, it's actually testing something that clang doesn't support. by Eric Christopher · 13 years ago
  74. de86a38 XFAIL this test on ARM. Filed PR10518 to track. by Eric Christopher · 13 years ago
  75. 5dcca66 Remove the optimization option for this test. by Eric Christopher · 13 years ago
  76. 2223441 No one cares about ppc, but make this work for arm and x86 and xfail the rest. by Eric Christopher · 13 years ago
  77. 87dd7d9 Make this darwin only for now while investigating to clear up x86_64 by Eric Christopher · 13 years ago
  78. 5cee119 Add support for C++0x unicode string and character literals, from Craig Topper! by Douglas Gregor · 13 years ago
  79. acc060f Handle different sized wchar_t for windows. by Eric Christopher · 13 years ago
  80. cd6ab8c Use the correct definition for memset. by Eric Christopher · 13 years ago
  81. 7e0afd9 Make this darwin only to simplify the padding calculations per arch. by Eric Christopher · 13 years ago
  82. 0cdb55b This appears to be passing on all hosts. by Eric Christopher · 13 years ago
  83. b056db9 Try a little hack to fix the memset duplication on windows. by Eric Christopher · 13 years ago
  84. 7560b3d Try harder to fix these for windows. by Eric Christopher · 13 years ago
  85. d579a88 Generalize for various build bots. by Eric Christopher · 13 years ago
  86. 0c14190 Rewrite match line to be friendlier to misc buildbots. by Eric Christopher · 13 years ago
  87. 2924da3 Rewrite matching line to be friendlier to misc buildbots. by Eric Christopher · 13 years ago
  88. 041e409 Attempt to rewrite the matching for this test to pacify the windows build bots. by Eric Christopher · 13 years ago
  89. b8f31ac Rework the match here to silence release mode windows buildbots. by Eric Christopher · 13 years ago
  90. c694411 Attempt to generalize this test for release mode buildbots. by Eric Christopher · 13 years ago
  91. c0ecde3 Try to generalize the match to quiet the windows build bot. by Eric Christopher · 13 years ago
  92. 54562ec Use unsigned long long for uint64_t. Fixes part of the windows buildbot. by Eric Christopher · 13 years ago
  93. 3883e66 Migrate most of the rest of test/FrontendC from llvm and migrate by Eric Christopher · 13 years ago
  94. d484040 Adjust check for release mode. by Eric Christopher · 13 years ago
  95. b025734 Migrate: by Eric Christopher · 13 years ago
  96. bb9d3f1 Migrate CodeGen/2007-03-05-DataLayout.c from test/FrontendC with changes by Eric Christopher · 13 years ago
  97. f1ce4be Migrate CodeGen/2005-02-20-AggregateSAVEEXPR.c from test/FrontendC with by Eric Christopher · 13 years ago
  98. e6f7536 Migrate CodeGen/2009-09-24-SqrtErrno.c from test/FrontendC with changes by Eric Christopher · 13 years ago
  99. 4ebf229 Migrate CodeGen/2002-03-11-LargeCharInString.c from test/FrontendC and by Eric Christopher · 13 years ago
  100. d9a5459 Add CodeGen/2009-07-15-pad-wchar_t-array.c migrated from test/FrontendC by Eric Christopher · 13 years ago