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

From-SVN: r238011
This commit is contained in:
Jan Hubicka 2016-07-05 18:13:46 +02:00 committed by Jan Hubicka
parent 10406801f4
commit 341c5337bf
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -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;