You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
441 B
14 lines
441 B
4 months ago
|
# RUN: llc -march=amdgcn -mcpu=gfx900 -run-pass postrapseudos %s -o - | FileCheck -check-prefix=GCN %s
|
||
|
|
||
|
# Check that post-RA expanded COPY doesn't have renamable operands
|
||
|
# since V_MOV_B32_e32 has hasExtraSrcRegAllocReq set.
|
||
|
# GCN-LABEL: name: test1
|
||
|
# GCN: $vgpr1 = V_MOV_B32_e32 $vgpr0, implicit $exec
|
||
|
name: test1
|
||
|
tracksRegLiveness: true
|
||
|
body: |
|
||
|
bb.0:
|
||
|
liveins: $vgpr0
|
||
|
renamable $vgpr1 = COPY renamable $vgpr0
|
||
|
...
|