summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/sink_instruction.ll
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-09-05 11:35:16 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-09-05 11:35:16 +0000
commit31ab6e3364c69a8d07d8e80bd4673d5f8a56a122 (patch)
tree4aec8e97728b70d2691bd6ca9973ebf204e12774 /test/Transforms/InstCombine/sink_instruction.ll
parent8c042c2337948e5a6051f34a2d6263fe19737e14 (diff)
downloadllvm-31ab6e3364c69a8d07d8e80bd4673d5f8a56a122.tar.gz
llvm-31ab6e3364c69a8d07d8e80bd4673d5f8a56a122.tar.bz2
llvm-31ab6e3364c69a8d07d8e80bd4673d5f8a56a122.tar.xz
Eliminate uses of %prcontext.
- I'd appreciate it if someone else eyeballs my changes to make sure I captured the intent of the test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/InstCombine/sink_instruction.ll')
-rw-r--r--test/Transforms/InstCombine/sink_instruction.ll5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/sink_instruction.ll b/test/Transforms/InstCombine/sink_instruction.ll
index cb8a090e5a..8d4381afec 100644
--- a/test/Transforms/InstCombine/sink_instruction.ll
+++ b/test/Transforms/InstCombine/sink_instruction.ll
@@ -1,5 +1,4 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
-; RUN: %prcontext div 1 | grep ret
+; RUN: opt -instcombine %s | llvm-dis | FileCheck %s
;; This tests that the instructions in the entry blocks are sunk into each
;; arm of the 'if'.
@@ -14,6 +13,8 @@ then: ; preds = %entry
ret i32 %tmp.9
endif: ; preds = %entry
+; CHECK: sdiv i32
+; CHECK-NEXT: ret i32
ret i32 %tmp.2
}