Commit 16ab02ac by Richard Stallman

(print_operand_address) [MOTOROLA]: Use .w and .l, not :w, :l.

From-SVN: r1226
parent 77f99bc7
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment