[InstCombine] Signed saturation patterns
[llvm-core.git] / test / MachineVerifier / test_g_jump_table.mir
blob406edcbea5c2eb58793c9c7bf333351831b12c67
1 # RUN: not llc -march=aarch64 -o /dev/null -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: global-isel, aarch64-registered-target
4 ---
5 name:            test_jump_table
6 legalized:       true
7 tracksRegLiveness: true
8 jumpTable:
9   kind:            block-address
10   entries:
11     - id:              0
12       blocks:          [ '%bb.0' ]
13 liveins:
14 body:             |
15   bb.0:
17     ; CHECK: Bad machine code: Too few operands
18     %0:_(s32) = G_JUMP_TABLE
20     ; CHECK: G_JUMP_TABLE source operand must be a jump table index
21     %2:_(s32) = G_JUMP_TABLE %0
23     ; CHECK: G_JUMP_TABLE dest operand must have a pointer type
24     %3:_(s32) = G_JUMP_TABLE %jump-table.0
26 ...