[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MachineVerifier / test_g_intrinsic.mir
blob157edc09b80188206c8f2b5fdc4808f84c6c6036
1 # RUN: not llc -o - -march=amdgcn -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: amdgpu-registered-target
4 ---
5 name:            test_intrinsic
6 legalized:       true
7 regBankSelected: false
8 selected:        false
9 tracksRegLiveness: true
10 liveins:
11 body:             |
12   bb.0:
14     %0:_(p3) = G_IMPLICIT_DEF
15     %1:_(s32) = G_IMPLICIT_DEF
17     ; CHECK: Bad machine code: Too few operands
18     G_INTRINSIC
20     ; CHECK: Bad machine code: G_INTRINSIC first src operand must be an intrinsic ID
21     G_INTRINSIC 0
23     ; CHECK: Bad machine code: G_INTRINSIC first src operand must be an intrinsic ID
24     G_INTRINSIC %0, %1
26     ; CHECK: Bad machine code: G_INTRINSIC first src operand must be an intrinsic ID
27     %2:_(s32) = G_INTRINSIC %0, %1
29     ; CHECK: Bad machine code: G_INTRINSIC first src operand must be an intrinsic ID
30     %3:_(s32), %4:_(s32) = G_INTRINSIC %0, %1
32     ; CHECK: Bad machine code: G_INTRINSIC used with intrinsic that accesses memory
33     G_INTRINSIC intrinsic(@llvm.amdgcn.s.barrier)
35     ; CHECK: Bad machine code: G_INTRINSIC used with intrinsic that accesses memory
36     %3:_(s32) = G_INTRINSIC intrinsic(@llvm.amdgcn.ds.append), %0, 1
38 ...