From e45eabe24447a5320c65f0ccea1abbc286e247fd Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Thu, 13 Jun 1991 12:32:59 +0000 Subject: [PATCH] When computing the code component from the pc in handle_fn_end_breakpoint, take into account the number of expected constants in the component. --- ldb/breakpoint.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ldb/breakpoint.c b/ldb/breakpoint.c index dde268740..2470451c7 100644 --- a/ldb/breakpoint.c +++ b/ldb/breakpoint.c @@ -15,6 +15,7 @@ typedef unsigned long inst; #define REAL_LRA_SLOT 0 #define KNOWN_RETURN_P_SLOT 1 +#define BOGUS_LRA_CONSTANTS 2 static inst swap_insts(code_obj, pc_offset, new_inst) lispobj code_obj; @@ -120,7 +121,8 @@ struct sigcontext *scp; lispobj code = scp->sc_pc - (unsigned long)function_end_breakpoint_trap + (unsigned long)function_end_breakpoint_guts - - ((sizeof(struct code)+7)&~7) + type_OtherPointer; + ((sizeof(struct code)+((BOGUS_LRA_CONSTANTS-1)*sizeof(lispobj))+7)&~7) + + type_OtherPointer; struct code *codeptr = (struct code *)PTR(code); lispobj lra; -- GitLab