Display constants as both decimal and hex values

From-SVN: r26141
This commit is contained in:
Nick Clifton 1999-04-02 17:25:41 +00:00 committed by Nick Clifton
parent 1cc6c9bd40
commit 7b028dbadf
2 changed files with 8 additions and 0 deletions

View File

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

View File

@ -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':