* tree-ssa-loop-niter.c (nowrap_type_p): Use ANY_INTEGRAL_TYPE_P.
authorJan Hubicka <jh@suse.cz>
Tue, 5 Jul 2016 16:13:46 +0000 (18:13 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Tue, 5 Jul 2016 16:13:46 +0000 (16:13 +0000)
From-SVN: r238011

gcc/ChangeLog
gcc/tree-ssa-loop-niter.c

index de92a3efb8e1a09d68676445dd53c66193a52edb..bc4b4db894436bb0fb93b97c1ba66e0cfa35c80a 100644 (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
index 32fe2f91eddc963a737f67b5c8f1a94b0e92c128..0723752fbdc392bc06b049928314cde8d36ea9fa 100644 (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;