[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / MIR / Generic / invalid-jump-table-kind.mir
blob5f96d2d57e7cc5c1aa893bd9fa8da7b3bdf80ab6
1 # RUN: not llc -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   define i32 @test_jumptable(i32 %in) {
6   entry:
7     switch i32 %in, label %def [
8       i32 0, label %lbl1
9       i32 1, label %lbl2
10       i32 2, label %lbl3
11       i32 3, label %lbl4
12     ]
14   def:
15     ret i32 0
17   lbl1:
18     ret i32 1
20   lbl2:
21     ret i32 2
23   lbl3:
24     ret i32 4
26   lbl4:
27     ret i32 8
28   }
30 ...
31 ---
32 name:            test_jumptable
33 jumpTable:
34   # CHECK: [[@LINE+1]]:18: unknown enumerated scalar
35   kind:          switch
36   entries:
37     - id:        0
38       blocks:    [ '%bb.3.lbl1', '%bb.4.lbl2', '%bb.5.lbl3', '%bb.6.lbl4' ]
39 body: |
40   bb.0.entry:
42   bb.1.entry:
44   bb.2.def:
46   bb.3.lbl1:
48   bb.4.lbl2:
50   bb.5.lbl3:
52   bb.6.lbl4:
53 ...