Skip to content
Snippets Groups Projects
Commit 563f63f7 authored by hallgren's avatar hallgren
Browse files

Don't call undo_foreign_function_call in breakpoint_do_displaced_inst

under hpux.
parent d317f014
No related branches found
No related tags found
No related merge requests found
...@@ -37,7 +37,7 @@ void breakpoint_remove(lispobj code_obj, int pc_offset, ...@@ -37,7 +37,7 @@ void breakpoint_remove(lispobj code_obj, int pc_offset,
void breakpoint_do_displaced_inst(struct sigcontext *scp, void breakpoint_do_displaced_inst(struct sigcontext *scp,
unsigned long orig_inst) unsigned long orig_inst)
{ {
#ifndef hpux #if !defined(hpux) && !defined(irix)
undo_fake_foreign_function_call(scp); undo_fake_foreign_function_call(scp);
#endif #endif
arch_do_displaced_inst(scp, orig_inst); arch_do_displaced_inst(scp, orig_inst);
......
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