Commit d56d7a26 by Richard Kenner

(PRINT_OPERAND_ADDRESS): Use "RR'" rather than "R'" for symbolic

addresses.

From-SVN: r9847
parent bbdd88df
......@@ -2097,8 +2097,13 @@ readonly_data () \
fprintf (FILE, "%d(0,%s)", offset, reg_names [REGNO (base)]); \
break; \
case LO_SUM: \
if (flag_pic == 0 || !symbolic_operand (XEXP (addr, 1))) \
fputs ("R'", FILE); \
if (flag_pic == 0) \
{ \
if (!symbolic_operand (XEXP (addr, 1))) \
fputs ("R'", FILE); \
else \
fputs ("RR'", FILE); \
} \
else if (flag_pic == 1) \
abort (); \
else if (flag_pic == 2) \
......
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