--- old/src/share/vm/opto/vectornode.cpp 2015-06-03 18:24:01.937132834 +0200 +++ new/src/share/vm/opto/vectornode.cpp 2015-06-03 18:24:01.692299696 +0200 @@ -403,9 +403,10 @@ // Return the vector version of a scalar load node. LoadVectorNode* LoadVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem, - Node* adr, const TypePtr* atyp, uint vlen, BasicType bt) { + Node* adr, const TypePtr* atyp, uint vlen, BasicType bt, + ControlDependency control_dependency) { const TypeVect* vt = TypeVect::make(bt, vlen); - return new (C) LoadVectorNode(ctl, mem, adr, atyp, vt); + return new (C) LoadVectorNode(ctl, mem, adr, atyp, vt, control_dependency); } // Return the vector version of a scalar store node.