We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a3ef94 commit 82aa6f0Copy full SHA for 82aa6f0
llvm/lib/Target/X86/X86PreTileConfig.cpp
@@ -326,10 +326,11 @@ bool X86PreTileConfig::runOnMachineFunction(MachineFunction &MF) {
326
while (!CfgLiveInBBs.empty()) {
327
MachineBasicBlock *MBB = CfgLiveInBBs.pop_back_val();
328
for (auto *Pred : MBB->predecessors()) {
329
+ auto &Info = BBVisitedInfo[Pred];
330
if (BBVisitedInfo[Pred].LastCall) {
- CfgNeedInsert.insert(BBVisitedInfo[Pred].LastCall);
331
- } else if (!BBVisitedInfo[Pred].NeedTileCfgLiveIn) {
332
- BBVisitedInfo[Pred].NeedTileCfgLiveIn = true;
+ CfgNeedInsert.insert(Info.LastCall);
+ } else if (!Info.NeedTileCfgLiveIn) {
333
+ Info.NeedTileCfgLiveIn = true;
334
if (Pred == &MF.front())
335
CfgNeedInsert.insert(MIRef(Pred));
336
else
0 commit comments