[PATCH] D87556: [amdgpu] Lower SGPR-to-VGPR copy in the final phase of ISel.
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 17 08:17:16 PDT 2020
arsenm added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/SIISelLowering.cpp:11497
+ const SIInstrInfo &TII) {
+ for (MachineBasicBlock &MBB : MF) {
+ for (auto BI = MBB.begin(), BE = MBB.end(); BI != BE; /*EMPTY*/) {
----------------
I think it's unreasonable to have another surprise pass here
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D87556/new/
https://reviews.llvm.org/D87556
More information about the llvm-commits
mailing list