Skip to content

Commit 5a6976b

Browse files
fixup! remove accidental double negative
1 parent 715e116 commit 5a6976b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ bool RISCVVLOptimizer::tryReduceVL(MachineInstr &OrigMI) {
816816
MachineOperand &VLOp = MI.getOperand(VLOpNum);
817817

818818
if (!RISCV::isVLKnownLE(*CommonVL, VLOp)) {
819-
LLVM_DEBUG(dbgs() << " Abort due to no CommonVL not <= VLOp.\n");
819+
LLVM_DEBUG(dbgs() << " Abort due to CommonVL not <= VLOp.\n");
820820
continue;
821821
}
822822

0 commit comments

Comments
 (0)