diff options
author | Owen Anderson <resistor@mac.com> | 2008-05-16 04:34:19 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-05-16 04:34:19 +0000 |
commit | 3dc73d398c6268e97154bfa80e0f14c83f212043 (patch) | |
tree | b4051f3a8ad06eb340b65c4810fab9e333895e57 /test/Transforms | |
parent | ce12a2b71afaaf511768ea9b9f3b78ca8a883cf3 (diff) |
Move this test from ADCE to loop deletion, where it is more appropriate.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51181 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms')
-rw-r--r-- | test/Transforms/LoopDeletion/dcetest.ll (renamed from test/Transforms/ADCE/adcetest.ll) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/ADCE/adcetest.ll b/test/Transforms/LoopDeletion/dcetest.ll index cb14eea9b3..c112cae537 100644 --- a/test/Transforms/ADCE/adcetest.ll +++ b/test/Transforms/LoopDeletion/dcetest.ll @@ -1,7 +1,7 @@ ; This is the test case taken from Appel's book that illustrates a hard case ; that SCCP gets right, and when followed by ADCE, is completely eliminated ; -; RUN: llvm-as < %s | opt -sccp -adce -simplifycfg | llvm-dis | not grep br +; RUN: llvm-as < %s | opt -sccp -simplifycfg -indvars -loop-deletion -dce -simplifycfg | llvm-dis | not grep br define i32 @"test function"(i32 %i0, i32 %j0) { BB1: |