| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace all instances of dg.exp file with lit.local.cfg, since all tests are ↵ | Eli Bendersky | 2012-02-16 | 2 | -3/+1 |
| | | | | | | | | | run with LIT now and now Dejagnu. dg.exp is no longer needed. Patch reviewed by Daniel Dunbar. It will be followed by additional cleanup patches. llvm-svn: 150664 | ||||
| * | Try to eliminate the use of the 'unwind' instruction. | Bill Wendling | 2011-09-02 | 2 | -2/+2 |
| | | | | | llvm-svn: 139046 | ||||
| * | Update to new EH scheme. | Bill Wendling | 2011-08-31 | 3 | -1/+15 |
| | | | | | llvm-svn: 138908 | ||||
| * | stop accepting begin/end around function bodies in the .ll parser, this ↵ | Chris Lattner | 2011-06-17 | 1 | -4/+2 |
| | | | | | | | isn't pascal anymore. llvm-svn: 133244 | ||||
| * | Change tests from "opt %s" to "opt < %s" so that opt doesn't see the | Dan Gohman | 2009-09-11 | 22 | -22/+22 |
| | | | | | | | | | input filename so that opt doesn't print the input filename in the output so that grep lines in the tests don't unintentionally match strings in the input filename. llvm-svn: 81537 | ||||
| * | Eliminate more uses of llvm-as and llvm-dis. | Dan Gohman | 2009-09-09 | 2 | -2/+2 |
| | | | | | llvm-svn: 81293 | ||||
| * | Use opt -S instead of piping bitcode output through llvm-dis. | Dan Gohman | 2009-09-08 | 5 | -5/+5 |
| | | | | | llvm-svn: 81257 | ||||
| * | Change these tests to feed the assembly files to opt directly, instead | Dan Gohman | 2009-09-08 | 22 | -22/+22 |
| | | | | | | | of using llvm-as, now that opt supports this. llvm-svn: 81226 | ||||
| * | Allow readonly functions to unwind exceptions. Teach | Duncan Sands | 2009-05-06 | 1 | -2/+2 |
| | | | | | | | | | the optimizers about this. For example, a readonly function with no uses cannot be removed unless it is also marked nounwind. llvm-svn: 71071 | ||||
| * | Remove the ability for ADCE to remove unreachable blocks in loop nests, ↵ | Owen Anderson | 2008-07-03 | 1 | -37/+0 |
| | | | | | | | because, as Eli pointed out, SimplifyCFG already does this. llvm-svn: 53104 | ||||
| * | Add support to ADCE for pruning unreachable blocks. This addresses the final | Owen Anderson | 2008-07-02 | 1 | -0/+37 |
| | | | | | | | part of PR2509. llvm-svn: 53038 | ||||
| * | Replace the old ADCE implementation with a new one that more simply solves | Owen Anderson | 2008-05-29 | 2 | -44/+0 |
| | | | | | | | | | | the one case that ADCE catches that normal DCE doesn't: non-induction variable loop computations. This implementation handles this problem without using postdominators. llvm-svn: 51668 | ||||
| * | sabre brings to my attention that the 'tr' suffix is also obsolete | Gabor Greif | 2008-05-20 | 1 | -1/+1 |
| | | | | | llvm-svn: 51349 | ||||
| * | Rename the last test with .llx extension to .ll, resolve duplicate test by ↵ | Gabor Greif | 2008-05-20 | 1 | -1/+1 |
| | | | | | | | renaming to isnan2. Now that no test has llx ending there is no need to search for them from dg.exp too. llvm-svn: 51328 | ||||
| * | Move this test from ADCE to loop deletion, where it is more appropriate. | Owen Anderson | 2008-05-16 | 1 | -36/+0 |
| | | | | | llvm-svn: 51181 | ||||
| * | Move this test to LoopDeletion, where it now passes. | Owen Anderson | 2008-04-30 | 1 | -14/+0 |
| | | | | | llvm-svn: 50474 | ||||
| * | rename *.llx -> *.ll, last batch. | Chris Lattner | 2008-04-19 | 2 | -0/+0 |
| | | | | | llvm-svn: 49971 | ||||
| * | XFAIL this test for the moment. The real solution is to prevent ADCE | Owen Anderson | 2008-04-16 | 1 | -0/+1 |
| | | | | | | | | from transforming loops and adding a separate loop pass for removing loops with know trip counts. Until that happens, ADCE is miscompiling this code. llvm-svn: 49769 | ||||
| * | Remove llvm-upgrade and update test cases. | Tanya Lattner | 2008-03-01 | 24 | -564/+560 |
| | | | | | llvm-svn: 47793 | ||||
| * | Ding dong, the DoesntAccessMemoryFns and | Duncan Sands | 2007-11-23 | 1 | -5/+4 |
| | | | | | | | | | | OnlyReadsMemoryFns tables are dead! We get more, and more accurate, information from gcc via the readnone and readonly function attributes. llvm-svn: 44288 | ||||
| * | Readonly/readnone functions are allowed to throw | Duncan Sands | 2007-11-22 | 1 | -10/+12 |
| | | | | | | | | exceptions, so don't turn invokes of them into calls. llvm-svn: 44278 | ||||
| * | Unreachable block is not a root node in post dominator tree. | Devang Patel | 2007-07-24 | 1 | -0/+13 |
| | | | | | llvm-svn: 40458 | ||||
| * | Convert .cvsignore files | John Criswell | 2007-06-29 | 1 | -3/+0 |
| | | | | | llvm-svn: 37801 | ||||
| * | For PR1319: | Reid Spencer | 2007-04-14 | 1 | -2/+2 |
| | | | | | | | Convert to new test system. llvm-svn: 36023 | ||||
| * | Make the llvm-runtest function much more amenable by eliminating all the | Reid Spencer | 2007-04-11 | 1 | -1/+1 |
| | | | | | | | | | global variables that needed to be passed in. This makes it possible to add new global variables with only a couple changes (Makefile and llvm-dg.exp) instead of touching every single dg.exp file. llvm-svn: 35918 | ||||
| * | Remove use of implementation keyword. | Reid Spencer | 2007-03-28 | 1 | -2/+0 |
| | | | | | llvm-svn: 35412 | ||||
| * | For PR1258: | Reid Spencer | 2007-03-19 | 1 | -5/+5 |
| | | | | | | | Revise numeric value references to accommodate collapsed type planes. llvm-svn: 35170 | ||||
| * | Regression is gone, don't try to find it on clean target. | Reid Spencer | 2007-01-17 | 29 | -0/+861 |
| llvm-svn: 33296 | |||||

