src/hotspot/share/opto/loopnode.cpp
changeset 54699 1a5305f51bfd
parent 54698 3ebf58dbf5d8
child 54701 6b77693eda6a
--- a/src/hotspot/share/opto/loopnode.cpp	Wed Apr 17 14:52:25 2019 +0200
+++ b/src/hotspot/share/opto/loopnode.cpp	Thu May 02 11:05:47 2019 +0200
@@ -2946,7 +2946,7 @@
     for (LoopTreeIterator iter(_ltree_root); !iter.done(); iter.next()) {
       IdealLoopTree* lpt = iter.current();
       bool is_counted = lpt->is_counted();
-      if (!is_counted || !lpt->is_inner()) continue;
+      if (!is_counted || !lpt->is_innermost()) continue;
 
       // check for vectorized loops, any reassociation of invariants was already done
       if (is_counted && lpt->_head->as_CountedLoop()->is_unroll_only()) continue;