summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/jump-table-g0.ll
blob: 9996f5223595ab3f28de1cca57acc2c859c710ac (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
; RUN: llc -march=hexagon -hexagon-small-data-threshold=0 < %s
; REQUIRES: asserts

; Check for successful compilation.

; Function Attrs: nounwind
declare void @f0(i32) #0

; Function Attrs: nounwind
define i32 @f1(i32 %a0) #0 {
b0:
  switch i32 %a0, label %b1 [
    i32 1, label %b2
    i32 2, label %b3
    i32 3, label %b4
    i32 4, label %b5
    i32 5, label %b6
  ]

b1:                                               ; preds = %b0
  ret i32 0

b2:                                               ; preds = %b0
  call void @f0(i32 4)
  ret i32 4

b3:                                               ; preds = %b0
  call void @f0(i32 2)
  call void @f0(i32 42)
  ret i32 42

b4:                                               ; preds = %b0
  call void @f0(i32 -1)
  ret i32 -1

b5:                                               ; preds = %b0
  call void @f0(i32 123)
  ret i32 123

b6:                                               ; preds = %b0
  call void @f0(i32 88)
  ret i32 4
}

attributes #0 = { nounwind }
OpenPOWER on IntegriCloud