Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
[GR-33115] CompileBroker should resolve parameter types for JVMCI com…
Browse files Browse the repository at this point in the history
…piles

PullRequest: graal-jvmci-8/419
  • Loading branch information
tkrodriguez committed Sep 22, 2021
2 parents 48ff07c + 8736ccd commit 2a83d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/share/vm/compiler/compileBroker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1517,7 +1517,7 @@ nmethod* CompileBroker::compile_method(methodHandle method, int osr_bci,

assert(!HAS_PENDING_EXCEPTION, "No exception should be present");
// some prerequisites that are compiler specific
if (comp->is_c2() || comp->is_shark()) {
if (comp->is_c2() || comp->is_shark() || comp->is_jvmci()) {
method->constants()->resolve_string_constants(CHECK_AND_CLEAR_NULL);
// Resolve all classes seen in the signature of the method
// we are compiling.
Expand Down

0 comments on commit 2a83d55

Please sign in to comment.