Commit 647d4b75 by Richard Guenther Committed by Richard Biener

c-typeck.c (pointer_diff): Use c_common_type_for_size.

2012-03-07  Richard Guenther  <rguenther@suse.de>

	* c-typeck.c (pointer_diff): Use c_common_type_for_size.

From-SVN: r185047
parent 73ddd02d
2012-03-07 Richard Guenther <rguenther@suse.de>
* c-typeck.c (pointer_diff): Use c_common_type_for_size.
2012-03-07 Richard Guenther <rguenther@suse.de>
* convert.c (strip_float_extensions): Move ...
* tree.c (strip_float_extensions): ... here.
......
......@@ -3413,8 +3413,7 @@ pointer_diff (location_t loc, tree op0, tree op1)
be the same as the result type (ptrdiff_t), but may need to be a wider
type if pointers for the address space are wider than ptrdiff_t. */
if (TYPE_PRECISION (restype) < TYPE_PRECISION (TREE_TYPE (op0)))
inttype = lang_hooks.types.type_for_size
(TYPE_PRECISION (TREE_TYPE (op0)), 0);
inttype = c_common_type_for_size (TYPE_PRECISION (TREE_TYPE (op0)), 0);
else
inttype = restype;
......
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