Skip to content

Commit 23d67fd

Browse files
committedJan 6, 2022
Fix frame iteration for stack watermark on AArch64
1 parent b3fffdf commit 23d67fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/cpu/aarch64/frame_aarch64.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ frame frame::sender_for_interpreter_frame(RegisterMap* map) const {
452452
frame frame::sender(RegisterMap* map) const {
453453
frame result = sender_raw(map);
454454

455-
if (map->process_frames()) {
455+
if (map->process_frames() && !map->in_cont()) {
456456
StackWatermarkSet::on_iteration(map->thread(), result);
457457
}
458458

0 commit comments

Comments
 (0)
Please sign in to comment.