mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
3e054fe9ef
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81257 91177308-0d34-0410-b5e6-96231b3b80d8
48 lines
1.2 KiB
LLVM
48 lines
1.2 KiB
LLVM
; RUN: opt < %s -simplifycfg -S | \
|
|
; RUN: grep switch | count 1
|
|
|
|
; 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) {
|
|
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
|
|
}
|
|
|