1 # RUN: llc -march=amdgcn -mcpu=gfx900 -run-pass postrapseudos %s -o - | FileCheck -check-prefix=GCN %s 2 3 # Check that post-RA expanded COPY doesn't have renamable operands 4 # since V_MOV_B32_e32 has hasExtraSrcRegAllocReq set. 5 # GCN-LABEL: name: test1 6 # GCN: $vgpr1 = V_MOV_B32_e32 $vgpr0, implicit $exec 7 name: test1 8 tracksRegLiveness: true 9 body: | 10 bb.0: 11 liveins: $vgpr0 12 renamable $vgpr1 = COPY renamable $vgpr0 13 ... 14