hotspot/src/share/vm/opto/loopTransform.cpp
changeset 22851 4c4b6a45be43
parent 22838 82c7497fbad4
parent 21526 03b4acedb351
child 22872 b6902ee5bc8d
--- a/hotspot/src/share/vm/opto/loopTransform.cpp	Wed Nov 20 11:08:09 2013 -0800
+++ b/hotspot/src/share/vm/opto/loopTransform.cpp	Thu Nov 21 12:30:35 2013 -0800
@@ -1964,7 +1964,7 @@
       // Find loads off the surviving projection; remove their control edge
       for (DUIterator_Fast imax, i = dp->fast_outs(imax); i < imax; i++) {
         Node* cd = dp->fast_out(i); // Control-dependent node
-        if( cd->is_Load() ) {   // Loads can now float around in the loop
+        if (cd->is_Load() && cd->depends_only_on_test()) {   // Loads can now float around in the loop
           // Allow the load to float around in the loop, or before it
           // but NOT before the pre-loop.
           _igvn.replace_input_of(cd, 0, ctrl); // ctrl, not NULL