[PATCH] D82551: [AMDGPU] Don't combine DPP if DPP register is used more than once per instruction
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 26 02:41:02 PDT 2020
foad added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp:516
+ Src0->getSubReg() == Src1->getSubReg()) {
+ assert(Use == Src0 || Use == Src1);
+ LLVM_DEBUG(
----------------
This doesn't seem right. Use could be Src2 or some other operand, couldn't it?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82551/new/
https://reviews.llvm.org/D82551
More information about the llvm-commits
mailing list