Fix a typo in arm_print_operand.

From-SVN: r28219
This commit is contained in:
Bernd Schmidt 1999-07-22 13:40:14 +00:00 committed by Bernd Schmidt
parent 67ebece1ad
commit 5f5780e6ad
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
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.

View 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':