diff options
author | Chris Lattner <sabre@nondot.org> | 2002-05-03 19:57:16 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-05-03 19:57:16 +0000 |
commit | 46d51f7ba83cb816d68238b222034c707a17ff25 (patch) | |
tree | 82aaa49caf0a5efc725c99f041ff50e134e4f21a | |
parent | 2adcd83b89d1eb38c7118861454b528d5812aad0 (diff) | |
download | external_llvm-46d51f7ba83cb816d68238b222034c707a17ff25.zip external_llvm-46d51f7ba83cb816d68238b222034c707a17ff25.tar.gz external_llvm-46d51f7ba83cb816d68238b222034c707a17ff25.tar.bz2 |
Add const prop pass to eliminate dead branches
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2456 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/SCCP/sccptest.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/SCCP/sccptest.ll b/test/Transforms/SCCP/sccptest.ll index c4eff5e..7f39b6c 100644 --- a/test/Transforms/SCCP/sccptest.ll +++ b/test/Transforms/SCCP/sccptest.ll @@ -1,7 +1,7 @@ ; This is the test case taken from appel's book that illustrates a hard case ; that SCCP gets right. BB3 should be completely eliminated. ; -; RUN: if as < %s | opt -sccp -dce | dis | grep BB3 +; RUN: if as < %s | opt -sccp -constprop -dce | dis | grep BB3 ; RUN: then exit 1 ; RUN: else exit 0 ; RUN: fi |