llvm-project/llvm/test/CodeGen/AMDGPU/GlobalISel/inst-select-bitcast.mir
Matt Arsenault fdd761af15 AMDGPU/GlobalISel: Prepare some tests for store selection
Mostsly these would fail due to trying to use SI with a flat
operation. Implementing global loads with MUBUF is more work than
flat, so these won't be handled in the initial load selection.

Others fail because store of s64 won't initially work, as the current
set of patterns expect everything to be turned into v2i32.

llvm-svn: 365493
2019-07-09 14:30:57 +00:00

22 lines
493 B
YAML

# RUN: llc -march=amdgcn -run-pass=instruction-select -verify-machineinstrs -o - %s | FileCheck %s -check-prefixes=GCN
---
name: bitcast
legalized: true
regBankSelected: true
tracksRegLiveness: true
# GCN-LABEL: name: bitcast
# GCN: [[A:%[0-9]+]]:vgpr_32 = COPY $vgpr0
# GCN: S_ENDPGM 0, implicit [[A]]
body: |
bb.0:
liveins: $vgpr0
%0:vgpr(s32) = COPY $vgpr0
%1:vgpr(<2 x s16>) = G_BITCAST %0
%2:vgpr(s32) = G_BITCAST %1
S_ENDPGM 0, implicit %2
...