- 9bd8a56 Add explicit triples to avoid default behavior that varies by host. by Dan Gohman · 17 years ago
- 56fe9b7 Remove this test as it is too hard to fix after the by Duncan Sands · 17 years ago
- d58cf12 Fix this test: llvm-gcc-4.2 optimizes almost everything away, by Duncan Sands · 17 years ago
- e22814b Now that we don't output cleanups by default, the action by Duncan Sands · 17 years ago
- 5f43f92 If the source and destination pointers in an llvm.memmove are known by Dan Gohman · 17 years ago
- 6b83b5d call libc memcpy/memset if array size is bigger then threshold. by Rafael Espindola · 17 years ago
- 9f528e6 Don't promote volatile loads/stores. This is needed (for example) to handle setjmp/longjmp properly. by Anton Korobeynikov · 17 years ago
- be97c98 Constant split values needs upper bound and lower bound check, just like any other split value. by Devang Patel · 17 years ago
- 09ec1b0 Allow target constants to be illegal types. The target should by Chris Lattner · 17 years ago
- 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
- 57e4785 Fix this testcase: there are two matches for by Duncan Sands · 17 years ago
- 16adc23 update test to check that codegen works with llvm.used in llvm.metadata section by Andrew Lenharth · 17 years ago
- 9f30e22 Testcase for llvm.c* intrinsic failures. by Bill Wendling · 17 years ago
- 35a5cfe Test handling of complex constants as lvalues. by Duncan Sands · 17 years ago
- d651f65 Do not split loops rejected by processOneIterationLoop(). by Devang Patel · 17 years ago
- 0c6dcbb Fix this test for gcc-4.2. by Duncan Sands · 17 years ago
- 1594b98 Test dag xform: Fold C ? 0 : 1 to ~C or zext(~C) or trunc(~C) by Evan Cheng · 17 years ago
- 7bfd5db Add loop index split tests. by Devang Patel · 17 years ago
- 3da927b New test. Make sure dynamic_stackalloc size is rounded up. by Evan Cheng · 17 years ago
- 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
- 24eb92e add byval test by Rafael Espindola · 17 years ago
- 3c1b401 Add a test to ensure that obvious link messages are actually produced on by Reid Spencer · 17 years ago
- c90f089 Implement FPOWI ExpandOp. Fix PR1287. by Lauro Ramos Venancio · 17 years ago
- 77f8b72 Test case for PR1609. by Evan Cheng · 17 years ago
- 64d8e1b This test used "wc | grep ..."; convert it to use the count script. by Dan Gohman · 17 years ago
- 43c3db3 Convert tests using "grep -c ... | grep ..." to use the count script. by Dan Gohman · 17 years ago
- e5ab8c6 Delete extraneous uses of wc -l. by Dan Gohman · 17 years ago
- 52f11f7 Convert another test to use the count script. This one didn't fit the by Dan Gohman · 17 years ago
- 28beeea Convert tests using "| wc -l | grep ..." to use the count script. by Dan Gohman · 17 years ago
- 3b1d306 New test. by Evan Cheng · 17 years ago
- f65f11c Test case for PR1596. by Evan Cheng · 17 years ago
- b350b76 tcl seems to hate |& for some reason. by Chris Lattner · 17 years ago
- 81e6fbe switch this to use fastcc to avoid fpstack traffic on x86-32. Switch to by Chris Lattner · 17 years ago
- 606b91d Update test case. A spill should now be deleted. by Evan Cheng · 17 years ago
- d24165a Spiller reuse test case. by Evan Cheng · 17 years ago
- 1f80801 Now capable of rematerializing coalesced live intervals. by Evan Cheng · 17 years ago
- badb2d2 When x86 addresses matching exceeds its recursion limit, check to by Dan Gohman · 17 years ago
- a45d9a1 Fix PR1607 by Chris Lattner · 17 years ago
- d295386 test that the ptr-to-method is succefully eliminated, leaving just the vtable dispatch. by Chris Lattner · 17 years ago
- ce7c40c oops, forgot to commit this. by Chris Lattner · 17 years ago
- 8d2e888 Transform a load from an undef/zero global into an undef/global even if we by Chris Lattner · 17 years ago
- 8441157 Fix test so it passes. by Christopher Lamb · 17 years ago
- 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
- 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
- 57a6f30 Add a test script for counting lines. This can be used instead of the by Dan Gohman · 17 years ago
- 25ac7e8 Fix EXTRACT_ELEMENT, EXTRACT_SUBVECTOR, and EXTRACT_VECTOR_ELT to by Dan Gohman · 17 years ago
- f2369f2 when we see a unaligned load from an insufficiently aligned global or by Chris Lattner · 17 years ago
- f48a880 Add reference to problem report. by Nick Lewycky · 17 years ago
- 6df20ef Fix PR1577, a crash on invalid bug. by Chris Lattner · 17 years ago
- 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
- f947b3e It's safe to fold not of fcmp. by Nick Lewycky · 17 years ago
- 450770d Fix the dates on these tests. It's not September yet. Thanks Reid! by Nick Lewycky · 17 years ago
- d6dac0e Let scalar-evolution analyze loops with an unsigned comparison for the exit by Nick Lewycky · 17 years ago
- 06323bf Don't assume it's safe to transform a loop just because it's dominated by any by Nick Lewycky · 17 years ago
- 947596c update for new domtree dump format by Chris Lattner · 17 years ago
- 3038778 allow this to pass on ppc hosts. by Chris Lattner · 17 years ago
- 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
- 320fc8a Long double, part 1 of N. Support in IR. by Dale Johannesen · 17 years ago
- 7f55fcb Fix the alignment requirements of several unpck and shuf instructions. by Dan Gohman · 17 years ago
- 576c8da I don't have time to restore this functionality right now. by Chris Lattner · 17 years ago
- ce4eaec Reduced testcase for PR1594 by Chris Lattner · 17 years ago
- 1ff6138 Update dominator info for the middle blocks created while spliting by Devang Patel · 17 years ago
- 73a902b Mark the SSE and MMX load instructions that by Dan Gohman · 17 years ago
- 951626b Enhance instcombine to be more aggressive about folding casts of by Chris Lattner · 17 years ago
- 0a2a515 Fix test. by Evan Cheng · 17 years ago
- 9dd7a51 Fix PR1575 and test/Transforms/CondProp/2007-08-01-InvalidRead.ll by Chris Lattner · 17 years ago
- 406bfa3 Teach BasicAA about noalias parameter attributes, but do it correctly this time. by Christopher Lamb · 17 years ago
- 1451afe Make sure these tests pass for the right reasons (verifier error, rather than by Reid Spencer · 17 years ago
- 28ae151 Update dominator info for the middle blocks created while spliting by Devang Patel · 17 years ago
- 911935a New test. Bogus implicit-def prevented a copy from being coalesced. by Evan Cheng · 17 years ago
- dd487c1 Add a test for the load/store alignment. by Lauro Ramos Venancio · 17 years ago
- f3c13c8 Expand unaligned loads/stores when the target doesn't support them. (PR1548) by Lauro Ramos Venancio · 17 years ago
- 4eda058 Clean up C++ restrict test cases and add a test for restrict qualified methods. by Christopher Lamb · 17 years ago
- 695e1c6 these tests aren't xfailed. by Chris Lattner · 17 years ago
- b59e985 we're now handling this right :) by Chris Lattner · 17 years ago
- 268479f Forgot to update these files for the FastDSE changes. by Owen Anderson · 17 years ago
- f6a05f9 Rename FastDSE to just DSE. by Owen Anderson · 17 years ago
- ad07672 Requires SSE2. by Evan Cheng · 17 years ago
- b95f9d5 Fix a failure I accidentally caused in my last commit by mishandling the by Owen Anderson · 17 years ago
- c7d1114 Fix a bug in GetKnownAlignment of packed structs. by Lauro Ramos Venancio · 17 years ago
- b1576f5 Change the x86 assembly output to use tab characters to separate the by Dan Gohman · 17 years ago
- 054ab94 Fix a misoptimization in aha. by Owen Anderson · 17 years ago
- 4330b3a new testcase by Chris Lattner · 17 years ago
- 321ff4e Revert overly aggressive interpretation of noalias by Christopher Lamb · 17 years ago
- fee0a9c Bunch of tests to check loop passes. by Devang Patel · 17 years ago
- 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
- 50192c2 Teach BasicAA about noalias function parameters. Passes all of DejaGNU and test-suite. by Christopher Lamb · 17 years ago
- 66ca0bc Un-XFAIL these tests after r40622 fixed them. by Christopher Lamb · 17 years ago
- 1d3d230 For PR1553: by Reid Spencer · 17 years ago
- be444ed Fix a bug in getCopyFromParts turned up in the testcase for PR1132. by Dan Gohman · 17 years ago
- 4f9ba7c Fix a bug caused by indiscriminantly asking for the dominators of a predecessor. by Owen Anderson · 17 years ago
- a5e496f New test case. by Evan Cheng · 17 years ago
- 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
- 6551606 Be explicit about which level of optimization is being asked for. The -O option by Reid Spencer · 17 years ago
- 8127f3a Make this explictly signed. Fixes PR1571. by Nick Lewycky · 17 years ago
- d300622 Re-apply 40504, but with a fix for the segfault it caused in oggenc: by Dan Gohman · 17 years ago
- 3e22947 Reverting 40504 for now. It's breaking oggenc. by Evan Cheng · 17 years ago
- a377a24 Fix a bug introduced in my last commit. by Owen Anderson · 17 years ago
- 4553791 Fix a couple more bugs in the phi construction by pulling in code that does by Owen Anderson · 17 years ago
- 42000ef Test case for PR1573. by Evan Cheng · 17 years ago