Skip to content

Commit 857eb99

Browse files
committedMar 22, 2022
use is_special_native_intrinsic() in Method::is_always_compilable()
1 parent 5c7fbbf commit 857eb99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/oops/method.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ void Method::print_made_not_compilable(int comp_level, bool is_osr, bool report,
10751075

10761076
bool Method::is_always_compilable() const {
10771077
// Generated adapters must be compiled
1078-
if (is_method_handle_intrinsic() && is_synthetic()) {
1078+
if (is_special_native_intrinsic() && is_synthetic()) {
10791079
assert(!is_not_c1_compilable(), "sanity check");
10801080
assert(!is_not_c2_compilable(), "sanity check");
10811081
return true;

0 commit comments

Comments
 (0)
Please sign in to comment.