Skip to content

Commit

Permalink
8298737: 8296772 backport to jdk11u caused build error on sparc
Browse files Browse the repository at this point in the history
Reviewed-by: goetz
  • Loading branch information
Aleksei Voitylov authored and GoeLin committed Dec 19, 2022
1 parent 77d919a commit 88954e1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/hotspot/cpu/sparc/frame_sparc.inline.hpp
Expand Up @@ -70,6 +70,10 @@ inline int frame::frame_size(RegisterMap* map) const { return sender_sp() - sp()

inline intptr_t* frame::link() const { return (intptr_t *)(fp()[FP->sp_offset_in_saved_window()] + STACK_BIAS); }

inline intptr_t* frame::link_or_null() const {
return link();
}

inline intptr_t* frame::unextended_sp() const { return sp() + _sp_adjustment_by_callee; }

// return address:
Expand Down

1 comment on commit 88954e1

@openjdk-notifier
Copy link

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.