aboutsummaryrefslogtreecommitdiff
path: root/gas/macro.c
diff options
context:
space:
mode:
Diffstat (limited to 'gas/macro.c')
-rw-r--r--gas/macro.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/gas/macro.c b/gas/macro.c
index c8ebcab..3aba78f 100644
--- a/gas/macro.c
+++ b/gas/macro.c
@@ -136,7 +136,10 @@ buffer_and_nest (const char *from, const char *to, sb *ptr,
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);
}