[ARM] Better OR's for MVE compares
[llvm-core.git] / test / MachineVerifier / test_g_bitcast.mir
blob3446d5fc86eb2bacd0a06bca6e7e6ca5cc7446f0
1 #RUN: not llc -mtriple=amdgcn-amd-amdhsa -o - -global-isel -run-pass=none -verify-machineinstrs %s 2>&1 | FileCheck %s
2 # REQUIRES: global-isel, amdgpu-registered-target
4 ---
5 name:            test_bitcast
6 legalized:       true
7 regBankSelected: false
8 selected:        false
9 tracksRegLiveness: true
10 liveins:
11 body:             |
12   bb.0:
13    ; CHECK:  Bad machine code: bitcast cannot convert between pointers and other types
14     %0:_(s64) = G_IMPLICIT_DEF
15     %1:_(p0) = G_BITCAST %0
17     ; CHECK:  Bad machine code: bitcast cannot convert between pointers and other
18     %2:_(p0) = G_IMPLICIT_DEF
19     %3:_(s64) = G_BITCAST %2
21     ; CHECK: Bad machine code: bitcast sizes must match
22     %4:_(s32) = G_IMPLICIT_DEF
23     %5:_(s64) = G_BITCAST %4
25     ; CHECK: Bad machine code: bitcast sizes must match
26     %6:_(s32) = G_IMPLICIT_DEF
27     %7:_(<3 x s8>) = G_BITCAST %6
29     ; CHECK: Bad machine code: bitcast sizes must match
30     %8:_(p1) = G_IMPLICIT_DEF
31     %9:_(p3) = G_BITCAST %8
33     ; CHECK: Bad machine code: bitcast sizes must match
34     %10:_(p1) = G_IMPLICIT_DEF
35     %11:_(p3) = G_BITCAST %8
37 ...