Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8254362: x86_32 builds fail after JDK-8253180
Reviewed-by: kvn
  • Loading branch information
shipilev committed Oct 11, 2020
1 parent 25001c5 commit d3069ac
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hotspot/cpu/x86/c2_safepointPollStubTable_x86.cpp
Expand Up @@ -31,6 +31,7 @@

#define __ masm.
void C2SafepointPollStubTable::emit_stub_impl(MacroAssembler& masm, C2SafepointPollStub* entry) const {
#ifdef _LP64
assert(SharedRuntime::polling_page_return_handler_blob() != NULL,
"polling page return stub not created yet");
address stub = SharedRuntime::polling_page_return_handler_blob()->entry_point();
Expand All @@ -42,5 +43,8 @@ void C2SafepointPollStubTable::emit_stub_impl(MacroAssembler& masm, C2SafepointP
__ lea(rscratch1, safepoint_pc);
__ movptr(Address(r15_thread, JavaThread::saved_exception_pc_offset()), rscratch1);
__ jump(callback_addr);
#else
ShouldNotReachHere();
#endif
}
#undef __

1 comment on commit d3069ac

@bridgekeeper
Copy link

@bridgekeeper bridgekeeper bot commented on d3069ac Oct 11, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.