< prev index next >

src/hotspot/cpu/ppc/ppc.ad

Print this page
rev 50037 : 8202745: Remove hyphens from "out-of-bounds".

@@ -1035,11 +1035,11 @@
   // edge to assure no other operations are in between the two nodes.
   //
   // So first get the Proj node, mem_proj, to use it to iterate forward.
   Node *mem_proj = NULL;
   for (DUIterator_Fast imax, i = mba->fast_outs(imax); i < imax; i++) {
-    mem_proj = mba->fast_out(i);      // Throw out-of-bounds if proj not found
+    mem_proj = mba->fast_out(i);      // Throw out of bounds if proj not found
     assert(mem_proj->is_Proj(), "only projections here");
     ProjNode *proj = mem_proj->as_Proj();
     if (proj->_con == TypeFunc::Memory &&
         !Compile::current()->node_arena()->contains(mem_proj)) // Unmatched old-space only
       break;
< prev index next >