1 ; RUN: opt < %s -lowerswitch -S | FileCheck %s
3 define i32 @test(i32 %arg) #0 {
6 ; CHECK-NEXT: %res.0 = phi i32 [ 1, %NodeBlock ], [ 2, %1 ]
7 ; CHECK-NEXT: br label %3
9 ; CHECK-NEXT: %res.3 = phi i32 [ 0, %NewDefault ], [ %res.2, %4 ]
10 ; CHECK-NEXT: %6 = add nsw i32 %res.3, 1
11 ; CHECK-NEXT: ret i32 %6
13 switch i32 %arg, label %5 [
24 %res.0 = phi i32 [ 1, %0 ], [ 2, %1 ]
28 %res.1 = phi i32 [ 0, %0 ], [ %res.0, %2 ]
29 %phitmp = add nsw i32 %res.1, 2
33 %res.2 = phi i32 [ 1, %0 ], [ %phitmp, %3 ]
37 %res.3 = phi i32 [ 0, %0 ], [ %res.2, %4 ]
38 %6 = add nsw i32 %res.3, 1