From: Richard Stallman Date: Sun, 21 Jun 1992 21:06:04 +0000 (+0000) Subject: (print_operand_address) [MOTOROLA]: Use .w and .l, not :w, :l. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=16ab02ac8a426827dd532fddbc0d64d9c7a17d7d;p=gcc.git (print_operand_address) [MOTOROLA]: Use .w and .l, not :w, :l. From-SVN: r1226 --- diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 9fcef3d27cf..82168bc74d7 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -1880,9 +1880,9 @@ print_operand_address (file, addr) { output_addr_const (file, addr); if ((flag_pic == 1) && (breg == pic_offset_table_rtx)) - fprintf (file, ":w"); + fprintf (file, ".w"); if ((flag_pic == 2) && (breg == pic_offset_table_rtx)) - fprintf (file, ":l"); + fprintf (file, ".l"); } fprintf (file, "(%s", reg_names[REGNO (breg)]); if (ireg != 0)