final.c (output_addr_const): Print fixed-point constants as decimal not hex.
gcc/ * final.c (output_addr_const): Print fixed-point constants as decimal not hex. From-SVN: r177017
This commit is contained in:
parent
e62a2b6e5c
commit
848fac28ae
@ -1,3 +1,8 @@
|
||||
2011-08-01 Julian Brown <julian@codesourcery.com>
|
||||
|
||||
* final.c (output_addr_const): Print fixed-point constants as
|
||||
decimal not hex.
|
||||
|
||||
2011-08-01 Richard Guenther <rguenther@suse.de>
|
||||
|
||||
* stor-layout.c (initialize_sizetypes): Properly sign-extend
|
||||
|
@ -3609,8 +3609,7 @@ output_addr_const (FILE *file, rtx x)
|
||||
break;
|
||||
|
||||
case CONST_FIXED:
|
||||
fprintf (file, HOST_WIDE_INT_PRINT_HEX,
|
||||
(unsigned HOST_WIDE_INT) CONST_FIXED_VALUE_LOW (x));
|
||||
fprintf (file, HOST_WIDE_INT_PRINT_DEC, CONST_FIXED_VALUE_LOW (x));
|
||||
break;
|
||||
|
||||
case PLUS:
|
||||
|
Loading…
Reference in New Issue
Block a user