File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2670,7 +2670,7 @@ void ModuloScheduleExpanderMVE::expand() {
2670
2670
// / Check if ModuloScheduleExpanderMVE can be applied to L
2671
2671
bool ModuloScheduleExpanderMVE::canApply (MachineLoop &L) {
2672
2672
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 " ;);
2674
2674
return false ;
2675
2675
}
2676
2676
@@ -2688,7 +2688,7 @@ bool ModuloScheduleExpanderMVE::canApply(MachineLoop &L) {
2688
2688
for (MachineInstr &Ref : MRI.use_instructions (MO.getReg ()))
2689
2689
if (Ref.getParent () != BB || Ref.isPHI ()) {
2690
2690
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 " ;);
2692
2692
return false ;
2693
2693
}
2694
2694
You can’t perform that action at this time.
0 commit comments