summaryrefslogtreecommitdiff
path: root/vm_dump.c
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2021-03-05 20:40:58 +0000
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-03-22 23:32:07 +0900
commit35d30c6ac5a882e2d3b34a9a838f39c2f58531df (patch)
tree84e96bfbba29f65722b32d8b0b0bb66f7357714f /vm_dump.c
parent5e16c3a12a7f7869109fd8b72d7f54db347e5fe5 (diff)
vm dump display return address in the abscence of X30 in Mac ARM64.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4243
Diffstat (limited to 'vm_dump.c')
-rw-r--r--vm_dump.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/vm_dump.c b/vm_dump.c
index a6c8eaa5be..657bab1676 100644
--- a/vm_dump.c
+++ b/vm_dump.c
@@ -991,6 +991,7 @@ rb_dump_machine_register(const ucontext_t *ctx)
dump_machine_register(x[26]);
dump_machine_register(x[27]);
dump_machine_register(x[28]);
+ dump_machine_register(lr);
dump_machine_register(fp);
dump_machine_register(sp);
# endif