Commit 8f9661dd by Jeffrey A Law Committed by Jeff Law

* mips.c (print_operand, case 'x'): Use HOST_WIDE_INT_PRINT_HEX.

From-SVN: r19769
parent b5effa19
Fri May 15 01:47:37 1998 Jeffrey A Law (law@cygnus.com)
* mips.c (print_operand, case 'x'): Use HOST_WIDE_INT_PRINT_HEX.
Fri May 15 01:42:45 1998 Mumit Khan <khan@xraylith.wisc.edu>
* objc/Make-lang.in (OBJC_O): Add missing exeext.
......
......@@ -4811,7 +4811,7 @@ print_operand (file, op, letter)
}
else if (letter == 'x' && GET_CODE (op) == CONST_INT)
fprintf (file, "0x%04x", 0xffff & INTVAL(op));
fprintf (file, HOST_WIDE_INT_PRINT_HEX, 0xffff & INTVAL(op));
else if (letter == 'X' && GET_CODE(op) == CONST_INT)
fprintf (file, HOST_WIDE_INT_PRINT_HEX, INTVAL (op));
......
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