[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / MIR / AArch64 / generic-virtual-registers-error.mir
blob9236b69fb70df5443466f501133ceda999a0078f
1 # RUN: not llc -mtriple=aarch64-apple-ios -run-pass none -o - %s 2>&1 \
2 # RUN:        | FileCheck %s --check-prefix=ERR
3 # REQUIRES: global-isel
4 # This test ensures that the MIR parser errors out when
5 # generic virtual register definitions are not correct.
7 --- |
8   define void @baz() { ret void }
9 ...
11 ---
12 name:            baz
13 registers:
14   - { id: 0, class: _ }
15 body: |
16   bb.0:
17     liveins: $w0
18     ; ERR: generic virtual registers must have a type
19     ; ERR-NEXT: %0
20     %0 = G_ADD i32 $w0, $w0
21 ...