Commit 5f5780e6 by Bernd Schmidt Committed by Bernd Schmidt

Fix a typo in arm_print_operand.

From-SVN: r28219
parent 67ebece1
Thu Jul 22 14:34:59 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* config/arm/arm.c (arm_print_operand): Fix typo in 'M' case
(use NUM_REGS instead of NUM_INTS).
Thu Jul 22 11:25:20 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* builtins.c: New file.
......
......@@ -6104,7 +6104,7 @@ arm_print_operand (stream, x, code)
case 'M':
asm_fprintf (stream, "{%R%s-%R%s}",
reg_names[REGNO (x)],
reg_names[REGNO (x) + NUM_INTS (GET_MODE (x)) - 1]);
reg_names[REGNO (x) + NUM_REGS (GET_MODE (x)) - 1]);
return;
case 'd':
......
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