< prev index next >

src/share/vm/opto/output.cpp

Print this page

        

@@ -1878,12 +1878,12 @@
 
   // Don't optimize this if scheduling is disabled
   if (!do_scheduling())
     return;
 
-  // Scheduling code works only with pairs (8 bytes) maximum.
-  if (max_vector_size() > 8)
+  // Scheduling code works only with pairs (16 bytes) maximum.
+  if (max_vector_size() > 16)
     return;
 
   TracePhase tp("isched", &timers[_t_instrSched]);
 
   // Create a data structure for all the scheduling information
< prev index next >