diff --git a/runtime/compiler/optimizer/SPMDParallelizer.cpp b/runtime/compiler/optimizer/SPMDParallelizer.cpp index 6098a3f03e2..28a25b42bbd 100644 --- a/runtime/compiler/optimizer/SPMDParallelizer.cpp +++ b/runtime/compiler/optimizer/SPMDParallelizer.cpp @@ -698,8 +698,9 @@ bool TR_SPMDKernelParallelizer::visitNodeToSIMDize(TR::Node *parent, int32_t chi if (trace && !platformSupport) traceMsg(comp, " Found use of induction variable at node [%p] - platform does not support this vectorization\n", node); - - return platformSupport; + if (trace && platformSupport) + traceMsg(comp, " Found use of induction variable at node [%p] - vectorization disabled for now\n", node); + return false; // see : eclipse/openj9/9446 } } }