summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/add.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-08-02 19:27:58 +0000
committerChris Lattner <sabre@nondot.org>2002-08-02 19:27:58 +0000
commit4a6e4b30b44048cdc7277b3d0264e71e47b5611c (patch)
treeb5a74c0d9016473c5e23e93de27af920558bffe4 /test/Transforms/InstCombine/add.ll
parentc7f9637a9d6359a3898531e7266fcb370da770c1 (diff)
downloadllvm-4a6e4b30b44048cdc7277b3d0264e71e47b5611c.tar.gz
llvm-4a6e4b30b44048cdc7277b3d0264e71e47b5611c.tar.bz2
llvm-4a6e4b30b44048cdc7277b3d0264e71e47b5611c.tar.xz
These tests should not run -dce pass to cleanup instcombine.
If instcombine is making dead instructions, ALL that should be used is -die git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/add.ll')
-rw-r--r--test/Transforms/InstCombine/add.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/add.ll b/test/Transforms/InstCombine/add.ll
index f7461d2129..8247d05505 100644
--- a/test/Transforms/InstCombine/add.ll
+++ b/test/Transforms/InstCombine/add.ll
@@ -3,7 +3,7 @@
; This also tests that a subtract with a constant is properly converted
; to a add w/negative constant
-; RUN: if as < %s | opt -instcombine -dce | dis | grep add
+; RUN: if as < %s | opt -instcombine -die | dis | grep add
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi