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 b952dd6 commit 1a5deaaCopy full SHA for 1a5deaa
llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
@@ -1350,7 +1350,6 @@ bool RISCVVLOptimizer::runOnMachineFunction(MachineFunction &MF) {
1350
1351
TII = ST.getInstrInfo();
1352
1353
-
1354
// For each instruction that defines a vector, compute what VL its
1355
// downstream users demand.
1356
for (MachineBasicBlock *MBB : post_order(&MF)) {
@@ -1360,7 +1359,7 @@ bool RISCVVLOptimizer::runOnMachineFunction(MachineFunction &MF) {
1360
1359
if (!isCandidate(MI))
1361
continue;
1362
if (auto DemandedVL = checkUsers(MI))
1363
- DemandedVLs.insert({&MI, *DemandedVL});
+ DemandedVLs.insert({&MI, *DemandedVL});
1364
}
1365
1366
0 commit comments