Skip to content

Commit b17c0b6

Browse files
committedFeb 25, 2025
8350585: InlineSecondarySupersTest must be guarded on ppc64 by COMPILER2
Reviewed-by: amitkumar, mdoerr
1 parent 62f39bd commit b17c0b6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/hotspot/cpu/ppc/stubGenerator_ppc.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -4889,12 +4889,14 @@ void generate_lookup_secondary_supers_table_stub() {
48894889
// arraycopy stubs used by compilers
48904890
generate_arraycopy_stubs();
48914891

4892+
#ifdef COMPILER2
48924893
if (UseSecondarySupersTable) {
48934894
StubRoutines::_lookup_secondary_supers_table_slow_path_stub = generate_lookup_secondary_supers_table_slow_path_stub();
48944895
if (!InlineSecondarySupersTest) {
48954896
generate_lookup_secondary_supers_table_stub();
48964897
}
48974898
}
4899+
#endif // COMPILER2
48984900

48994901
StubRoutines::_upcall_stub_exception_handler = generate_upcall_stub_exception_handler();
49004902
StubRoutines::_upcall_stub_load_target = generate_upcall_stub_load_target();

0 commit comments

Comments
 (0)
Please sign in to comment.