[SystemZ] Comment fix in test/CodeGen/SystemZ/fp-cmp-05.ll
[oota-llvm.git] / test / CodeGen / SystemZ / branch-08.ll
index c4dc4673dc9516df1052d701d8e49a0a3dd963e0..0aa48063d0713faa727f08206f66ae87bad887fe 100644 (file)
@@ -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 , i32 *%bptr
   %cmp = icmp ult i32 %a, %b
   br i1 %cmp, label %callit, label %return