Commit 9aa7ea18 by Nick Clifton

Oops - fixed typo in previous delta

From-SVN: r26197
parent a566f004
...@@ -5738,9 +5738,9 @@ arm_print_operand (stream, x, code) ...@@ -5738,9 +5738,9 @@ arm_print_operand (stream, x, code)
{ {
fputc ('#', stream); fputc ('#', stream);
if (val < -1000 || val > 1000) if (val < -1000 || val > 1000)
fprintf (stream, HOST_WIDE_INT_PRINT_HEX (val)); fprintf (stream, HOST_WIDE_INT_PRINT_HEX, val);
else else
fprintf (stream, HOST_WIDE_INT_PRINT_DEC (val)); fprintf (stream, HOST_WIDE_INT_PRINT_DEC, val);
} }
} }
} }
......
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