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

From-SVN: r19769
This commit is contained in:
Jeffrey A Law 1998-05-15 00:49:49 +00:00 committed by Jeff Law
parent b5effa192a
commit 8f9661ddd6
2 changed files with 5 additions and 1 deletions

View File

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

View File

@ -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));