# HG changeset patch # User never # Date 1334685862 25200 # Node ID 847da049d62fd7a6c619788e50a57e6b8ffef80f # Parent 3576af4cb93994d0004963c6ecc6d1ca2cf98898 7162094: LateInlineCallGenerator::do_late_inline crashed on uninitialized _call_node Reviewed-by: never, twisti Contributed-by: nils.eliasson@oracle.com diff -r 3576af4cb939 -r 847da049d62f src/share/vm/opto/callGenerator.cpp --- a/src/share/vm/opto/callGenerator.cpp Wed Apr 11 19:15:46 2012 -0700 +++ b/src/share/vm/opto/callGenerator.cpp Tue Apr 17 11:04:22 2012 -0700 @@ -137,6 +137,7 @@ } CallStaticJavaNode *call = new (kit.C, tf()->domain()->cnt()) CallStaticJavaNode(tf(), target, method(), kit.bci()); + _call_node = call; // Save the call node in case we need it later if (!is_static) { // Make an explicit receiver null_check as part of this call. // Since we share a map with the caller, his JVMS gets adjusted. @@ -155,7 +156,6 @@ kit.set_edges_for_java_call(call, false, _separate_io_proj); Node* ret = kit.set_results_for_java_call(call, _separate_io_proj); kit.push_node(method()->return_type()->basic_type(), ret); - _call_node = call; // Save the call node in case we need it later return kit.transfer_exceptions_into_jvms(); }