AVR: Fix a nit in avr-passes.cc::absint_t.dump().

gcc/
	* config/avr/avr-passes.cc (absint_t::dump): Fix missing
	newline in dump.
This commit is contained in:
Georg-Johann Lay 2024-11-21 17:52:26 +01:00
parent 41fb3a5669
commit 938094abec

View File

@ -960,8 +960,9 @@ struct absint_t
const int sub_regno = eq[i].regno (false /*nonstrict*/);
const bool nop = regno && sub_regno == regno + i;
eq[i].dump (nop ? "%s=nop" : "%s", f);
fprintf (f, "%s", i ? "; " : xs + strlen ("%s"));
fprintf (f, "%s", i ? "; " : "");
}
fprintf (f, "%s", xs + strlen ("%s"));
}
}
}; // absint_t