[SimplifyCFG] Fix a test case.
authorEaswaran Raman <eraman@google.com>
Thu, 9 Nov 2017 23:17:52 +0000 (23:17 +0000)
committerEaswaran Raman <eraman@google.com>
Thu, 9 Nov 2017 23:17:52 +0000 (23:17 +0000)
This was first committed in r317845, but had the order of branch weights
wrong and didn't properly check the output.

llvm-svn: 317848

llvm/test/Transforms/SimplifyCFG/suppress-zero-branch-weights.ll

index a003746..b4f546e 100644 (file)
@@ -14,6 +14,7 @@ define i1 @repeated_signbits(i8 %condition) {
 ; CHECK-DAG:     i32  0, label %a
 ; CHECK-DAG:     i32  127, label %a
 ; CHECK-NEXT:    ]
+; CHECK-NOT:    , !prof
 ;
 entry:
   %sext = sext i8 %condition to i32
@@ -35,5 +36,5 @@ default:
   ret i1 0
 }
 
-!1 = !{!"branch_weights", i32 1, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0}
+!1 = !{!"branch_weights", i32 0, i32 1, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0, i32 0}