Commit 848fac28 by Julian Brown Committed by Julian Brown

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
parent e62a2b6e
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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment