(print_operand_address) [MOTOROLA]: Use .w and .l, not :w, :l.
authorRichard Stallman <rms@gnu.org>
Sun, 21 Jun 1992 21:06:04 +0000 (21:06 +0000)
committerRichard Stallman <rms@gnu.org>
Sun, 21 Jun 1992 21:06:04 +0000 (21:06 +0000)
From-SVN: r1226

gcc/config/m68k/m68k.c

index 9fcef3d27cfc5b4e817385376fd5b7097c52c4b2..82168bc74d7c77a4acfbe46c39de0f0fe99a1992 100644 (file)
@@ -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)