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 7fe39a2 commit 26a1a09Copy full SHA for 26a1a09
llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
@@ -1343,7 +1343,6 @@ bool RISCVVLOptimizer::runOnMachineFunction(MachineFunction &MF) {
1343
1344
TII = ST.getInstrInfo();
1345
1346
-
1347
// For each instruction that defines a vector, compute what VL its
1348
// downstream users demand.
1349
for (MachineBasicBlock *MBB : post_order(&MF)) {
@@ -1353,7 +1352,7 @@ bool RISCVVLOptimizer::runOnMachineFunction(MachineFunction &MF) {
1353
1352
if (!isCandidate(MI))
1354
continue;
1355
if (auto DemandedVL = checkUsers(MI))
1356
- DemandedVLs.insert({&MI, *DemandedVL});
+ DemandedVLs.insert({&MI, *DemandedVL});
1357
}
1358
1359
0 commit comments