summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/2002-05-14-SubFailure.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-28 22:44:42 +0000
committerChris Lattner <sabre@nondot.org>2003-06-28 22:44:42 +0000
commitc6cab2415195fe24b5c14e6dc62e1f09da7cf96e (patch)
tree95347f6f8a32ce48f7a8c1fff8ba49b610db268d /test/Transforms/InstCombine/2002-05-14-SubFailure.ll
parent35f7ba9120876f15148392b06c758fc23ec4a075 (diff)
Convert scripts from using explicit control flow to use the new grep-not script
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/2002-05-14-SubFailure.ll')
-rw-r--r--test/Transforms/InstCombine/2002-05-14-SubFailure.ll5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/Transforms/InstCombine/2002-05-14-SubFailure.ll b/test/Transforms/InstCombine/2002-05-14-SubFailure.ll
index 4141c10d705..dd859c51223 100644
--- a/test/Transforms/InstCombine/2002-05-14-SubFailure.ll
+++ b/test/Transforms/InstCombine/2002-05-14-SubFailure.ll
@@ -1,10 +1,7 @@
; Instcombine was missing a test that caused it to make illegal transformations
; sometimes. In this case, it transforms the sub into an add:
; RUN: echo foo
-; RUN: if as < %s | opt -instcombine | dis | grep add
-; RUN: then exit 1
-; RUN: else exit 0
-; RUN: fi
+; RUN: as < %s | opt -instcombine | dis | grep-not add
;