diff options
Diffstat (limited to 'llvm/test/CodeGen/SystemZ/int-cmp-44.ll')
-rw-r--r-- | llvm/test/CodeGen/SystemZ/int-cmp-44.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/SystemZ/int-cmp-44.ll b/llvm/test/CodeGen/SystemZ/int-cmp-44.ll index 85a8788a3bd..1b9a4ae353f 100644 --- a/llvm/test/CodeGen/SystemZ/int-cmp-44.ll +++ b/llvm/test/CodeGen/SystemZ/int-cmp-44.ll @@ -473,8 +473,8 @@ entry: %xor = xor i32 %val, 1 %add = add i32 %xor, 1000000 call void @foo() - %cmp = icmp eq i32 %add, 0 - br i1 %cmp, label %store, label %exit, !prof !1 + %cmp = icmp ne i32 %add, 0 + br i1 %cmp, label %exit, label %store store: store i32 %add, i32 *%ptr @@ -888,5 +888,3 @@ store: exit: ret i64 %res } - -!1 = !{!"branch_weights", i32 2, i32 1} |