Commit 341c5337 by Jan Hubicka Committed by Jan Hubicka

* tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.

From-SVN: r238011
parent 10406801
2016-07-05 Jan Hubicka <jh@suse.cz>
* tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
2016-07-05 Jiong Wang <jiong.wang@arm.com>
* lra-constraints.c (process_alt_operands): Don't add spilling cost for
......
......@@ -4105,7 +4105,7 @@ n_of_executions_at_most (gimple *stmt,
bool
nowrap_type_p (tree type)
{
if (INTEGRAL_TYPE_P (type)
if (ANY_INTEGRAL_TYPE_P (type)
&& TYPE_OVERFLOW_UNDEFINED (type))
return true;
......
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