diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/testb-je-fusion.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/testb-je-fusion.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/testb-je-fusion.ll b/llvm/test/CodeGen/X86/testb-je-fusion.ll index 7df4183ba08..9e946ae4ca3 100644 --- a/llvm/test/CodeGen/X86/testb-je-fusion.ll +++ b/llvm/test/CodeGen/X86/testb-je-fusion.ll @@ -9,7 +9,7 @@ define i32 @check_flag(i32 %flags, ...) nounwind { entry: %and = and i32 %flags, 512 %tobool = icmp eq i32 %and, 0 - br i1 %tobool, label %if.end, label %if.then, !prof !1 + br i1 %tobool, label %if.end, label %if.then if.then: br label %if.end @@ -18,4 +18,3 @@ if.end: %hasflag = phi i32 [ 1, %if.then ], [ 0, %entry ] ret i32 %hasflag } -!1 = !{!"branch_weights", i32 1, i32 2} |