1. 9bd8a56 Add explicit triples to avoid default behavior that varies by host. by Dan Gohman · 17 years ago
  2. 56fe9b7 Remove this test as it is too hard to fix after the by Duncan Sands · 17 years ago
  3. d58cf12 Fix this test: llvm-gcc-4.2 optimizes almost everything away, by Duncan Sands · 17 years ago
  4. e22814b Now that we don't output cleanups by default, the action by Duncan Sands · 17 years ago
  5. 5f43f92 If the source and destination pointers in an llvm.memmove are known by Dan Gohman · 17 years ago
  6. 6b83b5d call libc memcpy/memset if array size is bigger then threshold. by Rafael Espindola · 17 years ago
  7. 9f528e6 Don't promote volatile loads/stores. This is needed (for example) to handle setjmp/longjmp properly. by Anton Korobeynikov · 17 years ago
  8. be97c98 Constant split values needs upper bound and lower bound check, just like any other split value. by Devang Patel · 17 years ago
  9. 09ec1b0 Allow target constants to be illegal types. The target should by Chris Lattner · 17 years ago
  10. 4a69da9 While calculating upper loop bound for first loop and lower loop bound for second loop, take care of edge cases. by Devang Patel · 17 years ago
  11. 57e4785 Fix this testcase: there are two matches for by Duncan Sands · 17 years ago
  12. 16adc23 update test to check that codegen works with llvm.used in llvm.metadata section by Andrew Lenharth · 17 years ago
  13. 9f30e22 Testcase for llvm.c* intrinsic failures. by Bill Wendling · 17 years ago
  14. 35a5cfe Test handling of complex constants as lvalues. by Duncan Sands · 17 years ago
  15. d651f65 Do not split loops rejected by processOneIterationLoop(). by Devang Patel · 17 years ago
  16. 0c6dcbb Fix this test for gcc-4.2. by Duncan Sands · 17 years ago
  17. 1594b98 Test dag xform: Fold C ? 0 : 1 to ~C or zext(~C) or trunc(~C) by Evan Cheng · 17 years ago
  18. 7bfd5db Add loop index split tests. by Devang Patel · 17 years ago
  19. 3da927b New test. Make sure dynamic_stackalloc size is rounded up. by Evan Cheng · 17 years ago
  20. cfc289d Update test: dynamic_stackalloc size *must* be rounded to ensure stack ptr be left in a valid state. by Evan Cheng · 17 years ago
  21. 24eb92e add byval test by Rafael Espindola · 17 years ago
  22. 3c1b401 Add a test to ensure that obvious link messages are actually produced on by Reid Spencer · 17 years ago
  23. c90f089 Implement FPOWI ExpandOp. Fix PR1287. by Lauro Ramos Venancio · 17 years ago
  24. 77f8b72 Test case for PR1609. by Evan Cheng · 17 years ago
  25. 64d8e1b This test used "wc | grep ..."; convert it to use the count script. by Dan Gohman · 17 years ago
  26. 43c3db3 Convert tests using "grep -c ... | grep ..." to use the count script. by Dan Gohman · 17 years ago
  27. e5ab8c6 Delete extraneous uses of wc -l. by Dan Gohman · 17 years ago
  28. 52f11f7 Convert another test to use the count script. This one didn't fit the by Dan Gohman · 17 years ago
  29. 28beeea Convert tests using "| wc -l | grep ..." to use the count script. by Dan Gohman · 17 years ago
  30. 3b1d306 New test. by Evan Cheng · 17 years ago
  31. f65f11c Test case for PR1596. by Evan Cheng · 17 years ago
  32. b350b76 tcl seems to hate |& for some reason. by Chris Lattner · 17 years ago
  33. 81e6fbe switch this to use fastcc to avoid fpstack traffic on x86-32. Switch to by Chris Lattner · 17 years ago
  34. 606b91d Update test case. A spill should now be deleted. by Evan Cheng · 17 years ago
  35. d24165a Spiller reuse test case. by Evan Cheng · 17 years ago
  36. 1f80801 Now capable of rematerializing coalesced live intervals. by Evan Cheng · 17 years ago
  37. badb2d2 When x86 addresses matching exceeds its recursion limit, check to by Dan Gohman · 17 years ago
  38. a45d9a1 Fix PR1607 by Chris Lattner · 17 years ago
  39. d295386 test that the ptr-to-method is succefully eliminated, leaving just the vtable dispatch. by Chris Lattner · 17 years ago
  40. ce7c40c oops, forgot to commit this. by Chris Lattner · 17 years ago
  41. 8d2e888 Transform a load from an undef/zero global into an undef/global even if we by Chris Lattner · 17 years ago
  42. 8441157 Fix test so it passes. by Christopher Lamb · 17 years ago
  43. c59e521 Increase efficiency of sign_extend_inreg by using subregisters for truncation. As the README suggests sign_extend_subreg is selected to (sext(trunc)). by Christopher Lamb · 17 years ago
  44. b813371 Add 2-addr to 3-addr promotion code that allows 32-bit LEA to be used via subregisters when 16-bit LEA is disabled. by Christopher Lamb · 17 years ago
  45. 57a6f30 Add a test script for counting lines. This can be used instead of the by Dan Gohman · 17 years ago
  46. 25ac7e8 Fix EXTRACT_ELEMENT, EXTRACT_SUBVECTOR, and EXTRACT_VECTOR_ELT to by Dan Gohman · 17 years ago
  47. f2369f2 when we see a unaligned load from an insufficiently aligned global or by Chris Lattner · 17 years ago
  48. f48a880 Add reference to problem report. by Nick Lewycky · 17 years ago
  49. 6df20ef Fix PR1577, a crash on invalid bug. by Chris Lattner · 17 years ago
  50. a583990 This resolves a regression of BasicAA which failed to find any memory information for overloaded intrinsics (PR1600). This resolves that issue, and improves the matching scheme to use a BitVector rather than a binary search. by Chandler Carruth · 17 years ago
  51. f947b3e It's safe to fold not of fcmp. by Nick Lewycky · 17 years ago
  52. 450770d Fix the dates on these tests. It's not September yet. Thanks Reid! by Nick Lewycky · 17 years ago
  53. d6dac0e Let scalar-evolution analyze loops with an unsigned comparison for the exit by Nick Lewycky · 17 years ago
  54. 06323bf Don't assume it's safe to transform a loop just because it's dominated by any by Nick Lewycky · 17 years ago
  55. 947596c update for new domtree dump format by Chris Lattner · 17 years ago
  56. 3038778 allow this to pass on ppc hosts. by Chris Lattner · 17 years ago
  57. 6994040 This is the patch to provide clean intrinsic function overloading support in LLVM. It cleans up the intrinsic definitions and generally smooths the process for more complicated intrinsic writing. It will be used by the upcoming atomic intrinsics as well as vector and float intrinsics in the future. by Chandler Carruth · 17 years ago
  58. 320fc8a Long double, part 1 of N. Support in IR. by Dale Johannesen · 17 years ago
  59. 7f55fcb Fix the alignment requirements of several unpck and shuf instructions. by Dan Gohman · 17 years ago
  60. 576c8da I don't have time to restore this functionality right now. by Chris Lattner · 17 years ago
  61. ce4eaec Reduced testcase for PR1594 by Chris Lattner · 17 years ago
  62. 1ff6138 Update dominator info for the middle blocks created while spliting by Devang Patel · 17 years ago
  63. 73a902b Mark the SSE and MMX load instructions that by Dan Gohman · 17 years ago
  64. 951626b Enhance instcombine to be more aggressive about folding casts of by Chris Lattner · 17 years ago
  65. 0a2a515 Fix test. by Evan Cheng · 17 years ago
  66. 9dd7a51 Fix PR1575 and test/Transforms/CondProp/2007-08-01-InvalidRead.ll by Chris Lattner · 17 years ago
  67. 406bfa3 Teach BasicAA about noalias parameter attributes, but do it correctly this time. by Christopher Lamb · 17 years ago
  68. 1451afe Make sure these tests pass for the right reasons (verifier error, rather than by Reid Spencer · 17 years ago
  69. 28ae151 Update dominator info for the middle blocks created while spliting by Devang Patel · 17 years ago
  70. 911935a New test. Bogus implicit-def prevented a copy from being coalesced. by Evan Cheng · 17 years ago
  71. dd487c1 Add a test for the load/store alignment. by Lauro Ramos Venancio · 17 years ago
  72. f3c13c8 Expand unaligned loads/stores when the target doesn't support them. (PR1548) by Lauro Ramos Venancio · 17 years ago
  73. 4eda058 Clean up C++ restrict test cases and add a test for restrict qualified methods. by Christopher Lamb · 17 years ago
  74. 695e1c6 these tests aren't xfailed. by Chris Lattner · 17 years ago
  75. b59e985 we're now handling this right :) by Chris Lattner · 17 years ago
  76. 268479f Forgot to update these files for the FastDSE changes. by Owen Anderson · 17 years ago
  77. f6a05f9 Rename FastDSE to just DSE. by Owen Anderson · 17 years ago
  78. ad07672 Requires SSE2. by Evan Cheng · 17 years ago
  79. b95f9d5 Fix a failure I accidentally caused in my last commit by mishandling the by Owen Anderson · 17 years ago
  80. c7d1114 Fix a bug in GetKnownAlignment of packed structs. by Lauro Ramos Venancio · 17 years ago
  81. b1576f5 Change the x86 assembly output to use tab characters to separate the by Dan Gohman · 17 years ago
  82. 054ab94 Fix a misoptimization in aha. by Owen Anderson · 17 years ago
  83. 4330b3a new testcase by Chris Lattner · 17 years ago
  84. 321ff4e Revert overly aggressive interpretation of noalias by Christopher Lamb · 17 years ago
  85. fee0a9c Bunch of tests to check loop passes. by Devang Patel · 17 years ago
  86. c64a1a9 Redo and generalize previously removed opt for pinsrw: (vextract (v4i32 bc (v4f32 s2v (f32 load ))), 0) -> (i32 load ) by Evan Cheng · 17 years ago
  87. 50192c2 Teach BasicAA about noalias function parameters. Passes all of DejaGNU and test-suite. by Christopher Lamb · 17 years ago
  88. 66ca0bc Un-XFAIL these tests after r40622 fixed them. by Christopher Lamb · 17 years ago
  89. 1d3d230 For PR1553: by Reid Spencer · 17 years ago
  90. be444ed Fix a bug in getCopyFromParts turned up in the testcase for PR1132. by Dan Gohman · 17 years ago
  91. 4f9ba7c Fix a bug caused by indiscriminantly asking for the dominators of a predecessor. by Owen Anderson · 17 years ago
  92. a5e496f New test case. by Evan Cheng · 17 years ago
  93. db95305 Add tests for generating noalias parameter attribute from __restrict qualified function parameters. C++ tests are currently XFAILing see PR1582. by Christopher Lamb · 17 years ago
  94. 6551606 Be explicit about which level of optimization is being asked for. The -O option by Reid Spencer · 17 years ago
  95. 8127f3a Make this explictly signed. Fixes PR1571. by Nick Lewycky · 17 years ago
  96. d300622 Re-apply 40504, but with a fix for the segfault it caused in oggenc: by Dan Gohman · 17 years ago
  97. 3e22947 Reverting 40504 for now. It's breaking oggenc. by Evan Cheng · 17 years ago
  98. a377a24 Fix a bug introduced in my last commit. by Owen Anderson · 17 years ago
  99. 4553791 Fix a couple more bugs in the phi construction by pulling in code that does by Owen Anderson · 17 years ago
  100. 42000ef Test case for PR1573. by Evan Cheng · 17 years ago