Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / GlobalISel / inst-select-inttoptr.mir
blob81fdf2fe0e78ad0c19d5b33a3027ab0a37131426
1 # RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=hawaii -run-pass=instruction-select -verify-machineinstrs -o - %s | FileCheck %s -check-prefixes=GCN
3 ---
5 name:            inttoptr
6 legalized:       true
7 regBankSelected: true
9 # GCN-LABEL: name: inttoptr
10 # GCN: [[S64:%[0-9]+]]:sreg_64 = COPY $sgpr0_sgpr1
11 # GCN: [[V64:%[0-9]+]]:vreg_64 = COPY $vgpr0_vgpr1
12 # GCN: [[VAL:%[0-9]+]]:sreg_32_xm0_xexec = S_LOAD_DWORD_IMM [[S64]], 0, 0
13 # GCN: [[V_VAL:%[0-9]+]]:vgpr_32 = COPY [[VAL]]
14 # GCN: FLAT_STORE_DWORD [[V64]], [[V_VAL]]
17 body: |
18   bb.0:
19     liveins: $sgpr0_sgpr1, $vgpr0_vgpr1
20     %0:sgpr(s64) = COPY $sgpr0_sgpr1
21     %1:vgpr(s64) = COPY $vgpr0_vgpr1
22     %2:sgpr(p4) = G_INTTOPTR %0
23     %3:sgpr(s32) = G_LOAD %2 :: (load (s32), addrspace 1)
24     %4:vgpr(p0) = G_INTTOPTR %1
25     %5:vgpr(s32) = COPY %3
26     G_STORE %5, %4 :: (store (s32), addrspace 1)
27 ...