Commit 7f49c331 by Richard Kenner

(print_operand): Handle 'R' for registers.

From-SVN: r9879
parent ed8a0e58
...@@ -2132,7 +2132,12 @@ print_operand (file, op, letter) ...@@ -2132,7 +2132,12 @@ print_operand (file, op, letter)
else else
#endif #endif
{ {
fprintf (file, "%s", reg_names[REGNO (op)]); if (letter == 'R')
/* Print out the second register name of a register pair.
I.e., R (6) => 7. */
fputs (reg_names[REGNO (op) + 1], file);
else
fputs (reg_names[REGNO (op)], file);
} }
} }
else if (GET_CODE (op) == MEM) else if (GET_CODE (op) == MEM)
......
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