[PATCH] D96707: AMDGPU: Fix debug info handling in post-RA bundler
Stanislav Mekhanoshin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 15 10:54:07 PST 2021
rampitec added inline comments.
Herald added a subscriber: ormris.
================
Comment at: llvm/lib/Target/AMDGPU/SIPostRABundler.cpp:138
+ ++ClauseLength;
+ } else if (I->isMetaInstruction()) {
+ // Allow meta instructions in between bundle candidates, but do not
----------------
Can you make it a single
```
else if (!I->isMetaInstruction())
break;
```
?
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96707/new/
https://reviews.llvm.org/D96707
More information about the llvm-commits
mailing list