Commit 3f889ae8 by Richard Kenner

(print_operand): Emit .l as scale factor #ifdef MOTOROLA.

From-SVN: r11427
parent e1c2b28d
......@@ -2181,7 +2181,11 @@ print_operand (file, op, letter)
&& INTVAL (XEXP (op, 0)) < 0x8000
&& INTVAL (XEXP (op, 0)) >= -0x8000))
{
#ifdef MOTOROLA
fprintf (file, ".l");
#else
fprintf (file, ":l");
#endif
}
}
#ifdef SUPPORT_SUN_FPA
......
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