[PATCH] D117562: [AMDGPU] Sink immediate VGPR defs if high RP
Vang Thao via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 20 16:38:23 PST 2022
vangthao marked an inline comment as done.
vangthao added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/GCNPreRAOptimizations.cpp:112
+ MachineOperand &Op = I.getOperand(0);
+ if (!Op.isReg())
+ break;
----------------
rampitec wrote:
> Is this ever possible to have a def w/o a def?
Some inline asm were giving me assertion issues.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D117562/new/
https://reviews.llvm.org/D117562
More information about the llvm-commits
mailing list