Display constants as both decimal and hex values
From-SVN: r26141
This commit is contained in:
parent
1cc6c9bd40
commit
7b028dbadf
@ -1,3 +1,8 @@
|
||||
Fri Apr 2 17:23:58 1999 Nick Clifton <nickc@cygnus.com>
|
||||
|
||||
* print-rtl.c (print_rtx): Use both HOST_WIDE_INT_PRINT_DEC
|
||||
and HOST_WIDE_INT_PRINT_HEX to display constants.
|
||||
|
||||
1999-04-02 20:16 -0500 Zack Weinberg <zack@rabi.columbia.edu>
|
||||
|
||||
* config/i386/i386.h: Document all TARGET_SWITCHES or add
|
||||
|
@ -231,6 +231,9 @@ print_rtx (in_rtx)
|
||||
case 'w':
|
||||
fprintf (outfile, " ");
|
||||
fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, XWINT (in_rtx, i));
|
||||
fprintf (outfile, " [");
|
||||
fprintf (outfile, HOST_WIDE_INT_PRINT_HEX, XWINT (in_rtx, i));
|
||||
fprintf (outfile, "]");
|
||||
break;
|
||||
|
||||
case 'i':
|
||||
|
Loading…
Reference in New Issue
Block a user