Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / GlobalISel / regbankselect-illegal-copy.mir
blob6c82c4a33e33d73a7af9ef5b2fee5e782524b9ee
1 # RUN: not --crash llc -mtriple=amdgcn -run-pass=amdgpu-regbankselect  -regbankselect-fast  %s -o /dev/null 2>&1 | FileCheck %s
2 # RUN: not --crash llc -mtriple=amdgcn -run-pass=amdgpu-regbankselect  -regbankselect-greedy  %s -o /dev/null 2>&1 | FileCheck %s
4 # Check behavior for illegal copies.
6 # CHECK: LLVM ERROR: unable to map instruction: $sgpr0 = COPY %0:vgpr(s32) (in function: illegal_copy_s32_v_to_s)
8 ---
9 name: illegal_copy_s32_v_to_s
10 legalized: true
12 body: |
13   bb.0:
14     liveins: $vgpr0
16     %0:_(s32) = COPY $vgpr0
17     $sgpr0 = COPY %0
18 ...