blob: 8bc5b8d2e65ad1e9141e0cbcb4e41ab4381cd38c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
; RUN: llvm-upgrade < %s | llvm-as | opt -simplifycfg | llvm-dis | grep switch | wc -l | grep 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()
void %test1(uint %V) {
switch uint %V, label %F [
uint 4, label %T
uint 17, label %T
uint 5, label %T
uint 1234, label %F
]
T:
switch uint %V, label %F [
uint 4, label %A
uint 17, label %B
uint 42, label %C
]
A:
call void %foo1()
ret void
B:
call void %foo2()
ret void
C:
call void %foo3()
ret void
F:
switch uint %V, label %F [
uint 4, label %B
uint 18, label %B
uint 42, label %D
]
D:
call void %foo4()
ret void
}
|