[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MachineVerifier / verify-regbankselected.mir
blob027fc6664573d3f246c39cec3c3f467543f0ed98
1 # RUN: not llc -verify-machineinstrs -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
2 # REQUIRES: aarch64-registered-target
4 --- |
6   target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"
7   target triple = "aarch64--"
8   define void @test() { ret void }
10 ...
11 ---
12 # CHECK: *** Bad machine code: Generic virtual register must have a bank in a RegBankSelected function ***
13 # CHECK: instruction: %0:_(s64) = COPY
14 # CHECK: operand 0: %0
15 name:            test
16 regBankSelected: true
17 registers:
18   - { id: 0, class: _ }
19 body: |
20   bb.0:
21    liveins: $x0
22    %0(s64) = COPY $x0
23 ...