diff options
author | Hiroshi SHIBATA <[email protected]> | 2024-09-26 17:10:40 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-09-26 17:53:21 +0900 |
commit | 71b253cdf377acf04fb8bd98221f48d7087946de (patch) | |
tree | 4dcaf80bde882dc56af2d73e7eadf93f0c80329c | |
parent | a07bf6d5ffddff95eb2f83d5950b759fb4285d2e (diff) |
Added LARCH_REG_FP to dump results
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11693
-rw-r--r-- | vm_dump.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1007,6 +1007,7 @@ rb_dump_machine_register(FILE *errout, const ucontext_t *ctx) dump_machine_register(mctx->__gregs[LARCH_REG_A5], "a5"); dump_machine_register(mctx->__gregs[LARCH_REG_A6], "a6"); dump_machine_register(mctx->__gregs[LARCH_REG_A7], "a7"); + dump_machine_register(mctx->__gregs[LARCH_REG_FP], "fp"); dump_machine_register(mctx->__gregs[LARCH_REG_S0], "s0"); dump_machine_register(mctx->__gregs[LARCH_REG_S1], "s1"); dump_machine_register(mctx->__gregs[LARCH_REG_S2], "s2"); |