Commit 0f7464f4 by H.J. Lu Committed by H.J. Lu

c-common.c (pointer_int_sum): Use %wd on return from tree_low_cst.

2009-03-27  H.J. Lu  <hongjiu.lu@intel.com>

	* c-common.c (pointer_int_sum): Use %wd on return from
	tree_low_cst.

From-SVN: r145112
parent a8847a7f
2009-03-27 H.J. Lu <hongjiu.lu@intel.com> 2009-03-27 H.J. Lu <hongjiu.lu@intel.com>
* c-common.c (pointer_int_sum): Use %wd on return from
tree_low_cst.
2009-03-27 H.J. Lu <hongjiu.lu@intel.com>
* c-common.c (pointer_int_sum): Use HOST_WIDE_INT_PRINT_DEC * c-common.c (pointer_int_sum): Use HOST_WIDE_INT_PRINT_DEC
on return from tree_low_cst. on return from tree_low_cst.
......
...@@ -3315,8 +3315,8 @@ pointer_int_sum (location_t location, enum tree_code resultcode, ...@@ -3315,8 +3315,8 @@ pointer_int_sum (location_t location, enum tree_code resultcode,
offset = offset + tree_low_cst (intop, 0); offset = offset + tree_low_cst (intop, 0);
if (offset < 0 || offset > max) if (offset < 0 || offset > max)
warning_at (location, 0, "offset %<" HOST_WIDE_INT_PRINT_DEC warning_at (location, 0,
"%> outside bounds of constant string", "offset %<%wd%> outside bounds of constant string",
tree_low_cst (intop, 0)); tree_low_cst (intop, 0));
} }
} }
......
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