In commit
2ee1792bec22 ("gas: further adjust file/line handling for .irp
and alike") I neglected the need to omit the leading . in M68K/MRI mode.
char *linefile;
as_where (&line);
- linefile = xasprintf ("\t.linefile %u .\n", line);
+ if (!flag_m68k_mri)
+ linefile = xasprintf ("\t.linefile %u .\n", line);
+ else
+ linefile = xasprintf ("\tlinefile %u .\n", line);
sb_add_buffer (ptr, linefile, strlen (linefile));
xfree (linefile);
}