[SimplifyCFG] Make test more robust (NFC)
authorNikita Popov <nikita.ppv@gmail.com>
Sun, 28 Jun 2020 16:35:13 +0000 (18:35 +0200)
committerNikita Popov <nikita.ppv@gmail.com>
Sun, 28 Jun 2020 18:51:03 +0000 (20:51 +0200)
Avoid changing this test if blocks get merged.

llvm/test/Transforms/SimplifyCFG/switch-dead-default.ll

index 7f71318..2ce04ec 100644 (file)
@@ -91,7 +91,7 @@ define void @test3(i2 %a) {
 ; CHECK-NEXT:    call void @foo(i32 2)
 ; CHECK-NEXT:    ret void
 ; CHECK:       default:
-; CHECK-NEXT:    call void @foo(i32 0)
+; CHECK-NEXT:    call void @foo(i32 3)
 ; CHECK-NEXT:    ret void
 ;
   switch i2 %a, label %default [i2 0, label %case0
@@ -108,7 +108,7 @@ case2:
   call void @foo(i32 2)
   ret void
 default:
-  call void @foo(i32 0)
+  call void @foo(i32 3)
   ret void
 }
 
@@ -127,7 +127,7 @@ define void @test4(i128 %a) {
 ; CHECK-NEXT:    call void @foo(i32 1)
 ; CHECK-NEXT:    ret void
 ; CHECK:       default:
-; CHECK-NEXT:    call void @foo(i32 0)
+; CHECK-NEXT:    call void @foo(i32 2)
 ; CHECK-NEXT:    ret void
 ;
   switch i128 %a, label %default [i128 0, label %case0
@@ -140,7 +140,7 @@ case1:
   call void @foo(i32 1)
   ret void
 default:
-  call void @foo(i32 0)
+  call void @foo(i32 2)
   ret void
 }