gcc/
* final.c (output_addr_const): Print fixed-point constants as
decimal not hex.
From-SVN: r177017
+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
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: