[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / CodeGen / MIR / WebAssembly / typed-immediate-operand-invalid0.mir
blobb9f138c14b00356c472dda305ba73bd29701d894
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 is only a single 'i'/'s'/'p' character
3 ---
4 name: test_typed_immediate_operand_invalid0
5 liveins:
6   - { reg: '$arguments' }
7 body: |
8   bb.0:
9     liveins: $arguments
10     ; CHECK: [[@LINE+1]]:24: expected integers after 'i'/'s'/'p' type character
11     %0:i32 = CONST_I32 i 0, implicit-def dead $arguments
12     RETURN_VOID implicit-def dead $arguments
13 ...