Commit 659bdc68 by Richard Earnshaw Committed by Richard Earnshaw

arm.h (THUMB_PRINT_OPERAND_ADDRESS): Use %wd in format and remove cast to int.

* arm.h (THUMB_PRINT_OPERAND_ADDRESS): Use %wd in format and remove
cast to int.

From-SVN: r67658
parent 4dd03b27
2003-06-09 Richard Earnshaw <rearnsha@arm.com>
* arm.h (THUMB_PRINT_OPERAND_ADDRESS): Use %wd in format and remove
cast to int.
2003-06-09 Richard Sandiford <rsandifo@redhat.com>
* configure.in: Assume gas 2.14 and above can handle MIPS relocation
......
......@@ -2470,9 +2470,9 @@ extern int making_const_table;
else if (GET_CODE (X) == PLUS) \
{ \
if (GET_CODE (XEXP (X, 1)) == CONST_INT) \
asm_fprintf (STREAM, "[%r, #%d]", \
asm_fprintf (STREAM, "[%r, #%wd]", \
REGNO (XEXP (X, 0)), \
(int) INTVAL (XEXP (X, 1))); \
INTVAL (XEXP (X, 1))); \
else \
asm_fprintf (STREAM, "[%r, %r]", \
REGNO (XEXP (X, 0)), \
......
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