Skip to content
Snippets Groups Projects
Commit 1eaf7945 authored by wlott's avatar wlott
Browse files

When we get a function-end breakpoint, call handle_function_end_breakpoint

instead of handle_breakpoint.
parent 372dff4e
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ struct sigcontext *context;
case trap_FunctionEndBreakpoint:
sigsetmask(context->sc_mask);
fake_foreign_function_call(context);
handle_breakpoint(signal, code, context);
handle_function_end_breakpoint(signal, code, context);
undo_fake_foreign_function_call(context);
context->sc_npc = context->sc_pc + 4;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment