mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-12 02:56:46 +08:00
* mips.c (print_operand, case 'x'): Use HOST_WIDE_INT_PRINT_HEX.
From-SVN: r19769
This commit is contained in:
parent
b5effa192a
commit
8f9661ddd6
@ -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.
|
||||
|
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user