src/share/vm/opto/callGenerator.cpp

changeset 3745
847da049d62f
parent 3313
a04a201f0f5a
child 3885
765ee2d1674b
     1.1 --- a/src/share/vm/opto/callGenerator.cpp	Wed Apr 11 19:15:46 2012 -0700
     1.2 +++ b/src/share/vm/opto/callGenerator.cpp	Tue Apr 17 11:04:22 2012 -0700
     1.3 @@ -137,6 +137,7 @@
     1.4    }
     1.5  
     1.6    CallStaticJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallStaticJavaNode(tf(), target, method(), kit.bci());
     1.7 +  _call_node = call;  // Save the call node in case we need it later
     1.8    if (!is_static) {
     1.9      // Make an explicit receiver null_check as part of this call.
    1.10      // Since we share a map with the caller, his JVMS gets adjusted.
    1.11 @@ -155,7 +156,6 @@
    1.12    kit.set_edges_for_java_call(call, false, _separate_io_proj);
    1.13    Node* ret = kit.set_results_for_java_call(call, _separate_io_proj);
    1.14    kit.push_node(method()->return_type()->basic_type(), ret);
    1.15 -  _call_node = call;  // Save the call node in case we need it later
    1.16    return kit.transfer_exceptions_into_jvms();
    1.17  }
    1.18  

mercurial