[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / MIR / WebAssembly / typed-immediate-operand-invalid1.mir
blobf5c16b52553bf7568ee528e8c9283f174bda4eee
1 # RUN: not llc -mtriple=wasm32-unknown-unknown -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # When a typed immediate operand does not start with 'i', 's', or 'p'
3 ---
4 name: test_typed_immediate_operand_invalid1
5 liveins:
6   - { reg: '$arguments' }
7 body: |
8   bb.0:
9     liveins: $arguments
10     ; CHECK: [[@LINE+1]]:24: a typed immediate operand should start with one of 'i', 's', or 'p'
11     %0:i32 = CONST_I32 abc 0, implicit-def dead $arguments
12     RETURN implicit-def dead $arguments
13 ...