Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Regression is gone, don't try to find it on clean target. | Reid Spencer | 2007-01-17 | 733 | -27701/+0 |
| | | | | llvm-svn: 33296 | ||||
* | new testcase | Chris Lattner | 2007-01-15 | 1 | -0/+12 |
| | | | | llvm-svn: 33233 | ||||
* | add a simple case where instcombine can detect and remove a dead alloca | Chris Lattner | 2007-01-15 | 1 | -0/+13 |
| | | | | llvm-svn: 33230 | ||||
* | ensure these don't xpass if opt crashes | Chris Lattner | 2007-01-15 | 2 | -0/+2 |
| | | | | llvm-svn: 33215 | ||||
* | new testcase | Chris Lattner | 2007-01-14 | 1 | -0/+6 |
| | | | | llvm-svn: 33206 | ||||
* | testcase reduced from pr1107 | Chris Lattner | 2007-01-13 | 1 | -0/+9 |
| | | | | llvm-svn: 33186 | ||||
* | For PR1043: | Reid Spencer | 2007-01-13 | 10 | -15/+20 |
| | | | | | | | | Bye, Bye Booly. Remove the use of the bool type from non-upgraded test cases and from grep expressions. The parser doesn't accept it and the asm writer doesn't produce it any more. llvm-svn: 33183 | ||||
* | Can't grep for bool any more. | Reid Spencer | 2007-01-13 | 1 | -1/+1 |
| | | | | llvm-svn: 33178 | ||||
* | New predicate simplifier! | Nick Lewycky | 2007-01-11 | 1 | -0/+19 |
| | | | | | | Please do not enable, there is still some known miscompile problem. llvm-svn: 33066 | ||||
* | testcase for PR1097 | Chris Lattner | 2007-01-08 | 1 | -0/+19 |
| | | | | llvm-svn: 33013 | ||||
* | llvm.isunordered.* are gone. | Reid Spencer | 2007-01-07 | 1 | -2/+0 |
| | | | | llvm-svn: 33002 | ||||
* | Simplify the testcase | Chris Lattner | 2007-01-07 | 1 | -11/+0 |
| | | | | llvm-svn: 32975 | ||||
* | Testcase for PR1015 | Chris Lattner | 2007-01-07 | 1 | -0/+53 |
| | | | | llvm-svn: 32973 | ||||
* | this testcase is too large to be useful, and requires a .bc file to be | Chris Lattner | 2007-01-06 | 2 | -5/+0 |
| | | | | | | kept around. We can do without it. llvm-svn: 32960 | ||||
* | Regenerate for new bytecode file format. | Reid Spencer | 2007-01-06 | 1 | -0/+0 |
| | | | | llvm-svn: 32957 | ||||
* | Accomodate new name manglinge done by llvm-upgrade | Reid Spencer | 2007-01-06 | 1 | -2/+2 |
| | | | | llvm-svn: 32954 | ||||
* | Global variables are not renamed by llvm-upgrade any more. | Reid Spencer | 2007-01-05 | 1 | -1/+1 |
| | | | | llvm-svn: 32925 | ||||
* | new test | Chris Lattner | 2007-01-05 | 1 | -0/+4 |
| | | | | llvm-svn: 32898 | ||||
* | manually upgrade this testcase | Chris Lattner | 2007-01-05 | 1 | -23/+23 |
| | | | | llvm-svn: 32897 | ||||
* | new testcase | Chris Lattner | 2007-01-05 | 1 | -0/+9 |
| | | | | llvm-svn: 32892 | ||||
* | llvm upgrade doesn't accept 'define' | Chris Lattner | 2007-01-05 | 1 | -1/+2 |
| | | | | llvm-svn: 32891 | ||||
* | new testcase | Chris Lattner | 2007-01-05 | 1 | -0/+6 |
| | | | | llvm-svn: 32889 | ||||
* | remove xfailed test that depends on obsolete argument to lli | Chris Lattner | 2007-01-04 | 1 | -76/+0 |
| | | | | llvm-svn: 32876 | ||||
* | Remove a manual renaming of a variable that was introduced before | Reid Spencer | 2007-01-04 | 1 | -1/+1 |
| | | | | | | llvm-upgrade could properly handle collapsed type planes. llvm-svn: 32875 | ||||
* | Update test cases that grepped for register names that have now changed | Reid Spencer | 2007-01-03 | 2 | -3/+6 |
| | | | | | | as a result of llvm-upgrade handling collapsed type planes better. llvm-svn: 32849 | ||||
* | For PR1070: | Reid Spencer | 2007-01-02 | 4 | -6/+12 |
| | | | | | | | | | | Tweak the RUN: lines of these tests to accommodate the renaming of variables done by llvm-upgrade. The renaming occurs as a result of avoiding name collisons for collapsed type planes. Conflicting names have a .u (unsigned) or .s (signed) suffix added. This patch updates the grep expression to accommodate the new names. llvm-svn: 32815 | ||||
* | For PR1070: | Reid Spencer | 2007-01-02 | 1 | -4/+14 |
| | | | | | | | Revert previous patch now that llvm-upgrade can handle collapsed type plane conversion properly. llvm-svn: 32814 | ||||
* | Back out last revision now that llvm-upgrade can remove useless bitcasts. | Reid Spencer | 2007-01-01 | 1 | -2/+2 |
| | | | | | | This serves as a test of that feature. llvm-svn: 32806 | ||||
* | For PR950: | Reid Spencer | 2006-12-31 | 46 | -104/+94 |
| | | | | | | | | | | | | | | | | | | | | | | Update the test suite to accommodate the change from signed integer types to signless integer types. The changes were of only a few kinds: 1. Make sure llvm-upgrade is run on the source which does the bulk of the changes automatically. 2. Change things like "grep 'int'" to "grep 'i32'" 3. In several tests bitcasting caused the same name to be reused in the same type plane. These had to be manually fixed. The fix was (generally) to leave the bitcast and provide the instruction with a new name. This should not affect the semantics of the test. In a few cases, the bitcasts were known to be superfluous and irrelevant to the test case so they were removed. 4. One test case uses a bytecode file which needed to be updated to the latest bytecode format. llvm-svn: 32789 | ||||
* | Update tests that need to be run through llvm-upgrade. This is necessary | Reid Spencer | 2006-12-29 | 10 | -11/+15 |
| | | | | | | for upcoming changes to the llvm assembly grammar. llvm-svn: 32768 | ||||
* | Test case for PR1065. | Reid Spencer | 2006-12-23 | 1 | -0/+33 |
| | | | | llvm-svn: 32755 | ||||
* | For PR950: | Reid Spencer | 2006-12-23 | 12 | -13/+355 |
| | | | | | | | | This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and been replaced with ICmpInst and FCmpInst. llvm-svn: 32751 | ||||
* | new testcase | Chris Lattner | 2006-12-20 | 1 | -0/+6 |
| | | | | llvm-svn: 32714 | ||||
* | Update this test because constant integers are always printed signed now. | Reid Spencer | 2006-12-19 | 1 | -1/+1 |
| | | | | llvm-svn: 32699 | ||||
* | Back out last revision, a bit premature, its not an upgrade-only change. | Reid Spencer | 2006-12-19 | 1 | -2/+2 |
| | | | | llvm-svn: 32670 | ||||
* | For PR950: | Reid Spencer | 2006-12-19 | 2 | -3/+3 |
| | | | | | | Upgrade this test in preparation for the SETCC patch. llvm-svn: 32669 | ||||
* | Fix borken testcase | Chris Lattner | 2006-12-16 | 1 | -1/+3 |
| | | | | llvm-svn: 32627 | ||||
* | fix buggy testcase | Chris Lattner | 2006-12-16 | 1 | -1/+3 |
| | | | | llvm-svn: 32626 | ||||
* | reenable these | Chris Lattner | 2006-12-15 | 2 | -4/+0 |
| | | | | llvm-svn: 32596 | ||||
* | Remove DSA tests. | John Criswell | 2006-12-13 | 1 | -4/+0 |
| | | | | llvm-svn: 32549 | ||||
* | Remove DSA tests. | John Criswell | 2006-12-13 | 14 | -331/+0 |
| | | | | llvm-svn: 32547 | ||||
* | xfail these until I recommit the scalarrepl patch | Chris Lattner | 2006-12-13 | 2 | -0/+4 |
| | | | | llvm-svn: 32545 | ||||
* | new testcase for pr1045 | Chris Lattner | 2006-12-12 | 1 | -0/+24 |
| | | | | llvm-svn: 32467 | ||||
* | constant folding of bitcast is broken. | Chris Lattner | 2006-12-11 | 1 | -0/+4 |
| | | | | llvm-svn: 32437 | ||||
* | new testcase | Chris Lattner | 2006-12-11 | 1 | -0/+12 |
| | | | | llvm-svn: 32421 | ||||
* | testcase for a regression introduced by the recent cast patch | Chris Lattner | 2006-12-11 | 1 | -0/+38 |
| | | | | llvm-svn: 32419 | ||||
* | new testcase | Chris Lattner | 2006-12-10 | 1 | -0/+10 |
| | | | | llvm-svn: 32417 | ||||
* | Too soon to commit, revert. | Reid Spencer | 2006-12-09 | 1 | -1/+1 |
| | | | | llvm-svn: 32397 | ||||
* | New test cases for regressions in the SetCC -> ICmp patch. | Reid Spencer | 2006-12-09 | 3 | -1/+97 |
| | | | | llvm-svn: 32396 | ||||
* | This test needs to be upgraded. | Reid Spencer | 2006-12-08 | 1 | -1/+1 |
| | | | | llvm-svn: 32359 |