src/share/vm/opto/vectornode.cpp

changeset 7859
c1c199dde5c9
parent 4204
b2c669fd8114
child 7994
04ff2f6cd0eb
     1.1 --- a/src/share/vm/opto/vectornode.cpp	Tue May 06 09:17:57 2014 +0200
     1.2 +++ b/src/share/vm/opto/vectornode.cpp	Wed Jun 03 14:22:57 2015 +0200
     1.3 @@ -403,9 +403,10 @@
     1.4  
     1.5  // Return the vector version of a scalar load node.
     1.6  LoadVectorNode* LoadVectorNode::make(Compile* C, int opc, Node* ctl, Node* mem,
     1.7 -                                     Node* adr, const TypePtr* atyp, uint vlen, BasicType bt) {
     1.8 +                                     Node* adr, const TypePtr* atyp, uint vlen, BasicType bt,
     1.9 +                                     ControlDependency control_dependency) {
    1.10    const TypeVect* vt = TypeVect::make(bt, vlen);
    1.11 -  return new (C) LoadVectorNode(ctl, mem, adr, atyp, vt);
    1.12 +  return new (C) LoadVectorNode(ctl, mem, adr, atyp, vt, control_dependency);
    1.13  }
    1.14  
    1.15  // Return the vector version of a scalar store node.

mercurial