Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hotspot/share/opto/graphKit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1913,7 +1913,7 @@ void GraphKit::set_predefined_output_for_runtime_call(Node* call,
set_control(_gvn.transform( new ProjNode(call,TypeFunc::Control) ));
if (call->is_CallLeafPure()) {
// Pure function have only control (for now) and data output, in particular
// the don't touch the memory, so we don't want a memory proj that is set after.
// they don't touch the memory, so we don't want a memory proj that is set after.
return;
}
if (keep_mem) {
Expand Down