diff options
Diffstat (limited to 'test/Transforms/InstCombine/hoist_instr.ll')
-rw-r--r-- | test/Transforms/InstCombine/hoist_instr.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/Transforms/InstCombine/hoist_instr.ll b/test/Transforms/InstCombine/hoist_instr.ll index e425bc2..b5f3f31 100644 --- a/test/Transforms/InstCombine/hoist_instr.ll +++ b/test/Transforms/InstCombine/hoist_instr.ll @@ -1,5 +1,4 @@ -; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \ -; RUN: %prcontext div 1 | grep then: +; RUN: llvm-as < %s | opt -instcombine | llvm-dis | FileCheck %s ;; This tests that the div is hoisted into the then block. define i32 @foo(i1 %C, i32 %A, i32 %B) { @@ -7,6 +6,8 @@ entry: br i1 %C, label %then, label %endif then: ; preds = %entry +; CHECK: then: +; CHECK-NEXT: sdiv i32 br label %endif endif: ; preds = %then, %entry |