8350258: AArch64: Client build fails after JDK-8347917

Reviewed-by: dlong, kvn
This commit is contained in:
Dmitry Chuyko 2025-02-21 21:43:54 +00:00
parent 825ab20ba9
commit 25322aae8e

View File

@ -507,11 +507,11 @@ frame frame::sender_for_interpreter_frame(RegisterMap* map) const {
intptr_t* unextended_sp = interpreter_frame_sender_sp();
intptr_t* sender_fp = link();
#if COMPILER2_OR_JVMCI
#if defined(COMPILER1) || COMPILER2_OR_JVMCI
if (map->update_map()) {
update_map_with_saved_link(map, (intptr_t**) addr_at(link_offset));
}
#endif // COMPILER2_OR_JVMCI
#endif // defined(COMPILER1) || COMPILER1_OR_COMPILER2
// For ROP protection, Interpreter will have signed the sender_pc,
// but there is no requirement to authenticate it here.