[PATCH] D114202: [AMDGPU] Fix SIPostRABundler crash on null register used by dbg value
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 18 16:05:17 PST 2021
arsenm added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/SIPostRABundler.cpp:93
BitVector &UsedRegUnits) const {
+ if (MI.isDebugInstr())
+ return;
----------------
This allows all meta instructions in the bundle region. Should it skip all of them?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D114202/new/
https://reviews.llvm.org/D114202
More information about the llvm-commits
mailing list