Skip to content

Commit cf258e9

Browse files
committed
fixup! [ModuloSchedule] Implement modulo variable expansion for pipelining
1 parent b9d203d commit cf258e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/CodeGen/ModuloSchedule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2670,7 +2670,7 @@ void ModuloScheduleExpanderMVE::expand() {
26702670
/// Check if ModuloScheduleExpanderMVE can be applied to L
26712671
bool ModuloScheduleExpanderMVE::canApply(MachineLoop &L) {
26722672
if (!L.getExitBlock()) {
2673-
LLVM_DEBUG(dbgs() << "Can not apply MVE expander: No single exit block\n";);
2673+
LLVM_DEBUG(dbgs() << "Can not apply MVE expander: No single exit block.\n";);
26742674
return false;
26752675
}
26762676

@@ -2688,7 +2688,7 @@ bool ModuloScheduleExpanderMVE::canApply(MachineLoop &L) {
26882688
for (MachineInstr &Ref : MRI.use_instructions(MO.getReg()))
26892689
if (Ref.getParent() != BB || Ref.isPHI()) {
26902690
LLVM_DEBUG(dbgs() << "Can not apply MVE expander: A phi result is "
2691-
"referenced outside of the loop or by phi.";);
2691+
"referenced outside of the loop or by phi.\n";);
26922692
return false;
26932693
}
26942694

0 commit comments

Comments
 (0)