diff options
author | Mike Pall <mike> | 2023-12-10 14:48:34 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2023-12-10 14:48:34 +0100 |
commit | dcf3627d79091e8c5535b15fc0ef40281ec9b9f7 (patch) | |
tree | ed4a31f050ae5e1ab990ce34a9e144d9dcc2daf1 | |
parent | 1761fd2ef79ffe1778011c7e9cb03ed361b48c5e (diff) | |
download | luajit-dcf3627d79091e8c5535b15fc0ef40281ec9b9f7.tar.gz luajit-dcf3627d79091e8c5535b15fc0ef40281ec9b9f7.tar.bz2 luajit-dcf3627d79091e8c5535b15fc0ef40281ec9b9f7.zip |
Fix .debug_abbrev section in GDB JIT API.
Thanks to Dmitry Stogov. #1129
-rw-r--r-- | src/lj_gdbjit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lj_gdbjit.c b/src/lj_gdbjit.c index 01f51ba7..c0d7a164 100644 --- a/src/lj_gdbjit.c +++ b/src/lj_gdbjit.c | |||
@@ -633,7 +633,7 @@ static void LJ_FASTCALL gdbjit_debugabbrev(GDBJITctx *ctx) | |||
633 | DUV(DW_AT_low_pc); DUV(DW_FORM_addr); | 633 | DUV(DW_AT_low_pc); DUV(DW_FORM_addr); |
634 | DUV(DW_AT_high_pc); DUV(DW_FORM_addr); | 634 | DUV(DW_AT_high_pc); DUV(DW_FORM_addr); |
635 | DUV(DW_AT_stmt_list); DUV(DW_FORM_data4); | 635 | DUV(DW_AT_stmt_list); DUV(DW_FORM_data4); |
636 | DB(0); DB(0); | 636 | DB(0); DB(0); DB(0); |
637 | 637 | ||
638 | ctx->p = p; | 638 | ctx->p = p; |
639 | } | 639 | } |