Commit 72d3b324 by Richard Kenner

(PRINT_OPERAND_ADDRESS): Handle CONST inside PLUS.

From-SVN: r10599
parent 293af484
...@@ -2557,7 +2557,8 @@ do { \ ...@@ -2557,7 +2557,8 @@ do { \
fprintf (FILE, "%+d", offset); \ fprintf (FILE, "%+d", offset); \
else if (GET_CODE (index) == REG) \ else if (GET_CODE (index) == REG) \
fprintf (FILE, "+%s", reg_names[REGNO (index)]); \ fprintf (FILE, "+%s", reg_names[REGNO (index)]); \
else if (GET_CODE (index) == SYMBOL_REF) \ else if (GET_CODE (index) == SYMBOL_REF \
|| GET_CODE (index) == CONST) \
fputc ('+', FILE), output_addr_const (FILE, index); \ fputc ('+', FILE), output_addr_const (FILE, index); \
else abort (); \ else abort (); \
} \ } \
......
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