diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/branch-08.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/branch-08.ll | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/SystemZ/branch-08.ll b/llvm/test/CodeGen/SystemZ/branch-08.ll index c4dc4673dc9..6741d29aec0 100644 --- a/llvm/test/CodeGen/SystemZ/branch-08.ll +++ b/llvm/test/CodeGen/SystemZ/branch-08.ll @@ -6,14 +6,15 @@ declare void @foo() noreturn ; Check a case where a separate branch is needed and where the original ; order should be reversed. -define i32 @f1(i32 %a, i32 %b) { +define i32 @f1(i32 %a, i32 *%bptr) { ; CHECK-LABEL: f1: -; CHECK: clr %r2, %r3 +; CHECK: cl %r2, 0(%r3) ; CHECK: jl .L[[LABEL:.*]] ; CHECK: br %r14 ; CHECK: .L[[LABEL]]: ; CHECK: brasl %r14, foo@PLT entry: + %b = load i32 *%bptr %cmp = icmp ult i32 %a, %b br i1 %cmp, label %callit, label %return |