llvm-mirror/test/Transforms/SimplifyCFG/switch_switch_fold.ll
Shawn Landden 0a920e3b98 [SimplifyCFG] NFC, update Switch tests as a baseline.
Also add baseline tests to show effect of later patches.

There were a couple of regressions here that were never caught,
but my patch set that this is a preparation to will fix them.

This is the third attempt to land this patch.

Differential Revision: https://reviews.llvm.org/D61150

llvm-svn: 363319
2019-06-13 19:36:38 +00:00

68 lines
1.5 KiB
LLVM

; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt < %s -simplifycfg -S | FileCheck %s
; Test that a switch going to a switch on the same value can be merged.
; All three switches in this example can be merged into one big one.
declare void @foo1()
declare void @foo2()
declare void @foo3()
declare void @foo4()
define void @test1(i32 %V) {
; CHECK-LABEL: @test1(
; CHECK-NEXT: switch i32 [[V:%.*]], label [[INFLOOP:%.*]] [
; CHECK-NEXT: i32 4, label [[A:%.*]]
; CHECK-NEXT: i32 17, label [[B:%.*]]
; CHECK-NEXT: i32 18, label [[B]]
; CHECK-NEXT: i32 42, label [[D:%.*]]
; CHECK-NEXT: ]
; CHECK: A:
; CHECK-NEXT: call void @foo1()
; CHECK-NEXT: ret void
; CHECK: B:
; CHECK-NEXT: call void @foo2()
; CHECK-NEXT: ret void
; CHECK: D:
; CHECK-NEXT: call void @foo4()
; CHECK-NEXT: ret void
; CHECK: infloop:
; CHECK-NEXT: br label [[INFLOOP]]
;
switch i32 %V, label %F [
i32 4, label %T
i32 17, label %T
i32 5, label %T
i32 1234, label %F
]
T: ; preds = %0, %0, %0
switch i32 %V, label %F [
i32 4, label %A
i32 17, label %B
i32 42, label %C
]
A: ; preds = %T
call void @foo1( )
ret void
B: ; preds = %F, %F, %T
call void @foo2( )
ret void
C: ; preds = %T
call void @foo3( )
ret void
F: ; preds = %F, %T, %0, %0
switch i32 %V, label %F [
i32 4, label %B
i32 18, label %B
i32 42, label %D
]
D: ; preds = %F
call void @foo4( )
ret void
}