Skip to content

Commit

Permalink
8350258: AArch64: Client build fails after JDK-8347917
Browse files Browse the repository at this point in the history
Reviewed-by: dlong, kvn
  • Loading branch information
Dmitry Chuyko committed Feb 21, 2025
1 parent 825ab20 commit 25322aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hotspot/cpu/aarch64/frame_aarch64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 25322aa

Please sign in to comment.