mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
Use more asterisks. Fixes (TRACE :ENCAPSULATE NIL) tests
This commit is contained in:
parent
29863ccece
commit
df845b7410
|
|
@ -231,9 +231,9 @@ arch_handle_after_breakpoint(os_context_t *context)
|
|||
*skipped_break_addr = trap_Breakpoint;
|
||||
os_flush_icache(skipped_break_addr, sizeof(unsigned int));
|
||||
skipped_break_addr = NULL;
|
||||
*(unsigned long *) os_context_pc_addr(context) = displaced_after_inst;
|
||||
*(unsigned long *)*os_context_pc_addr(context) = displaced_after_inst;
|
||||
/* context->sigmask = orig_sigmask; */
|
||||
os_flush_icache((os_vm_address_t) os_context_pc_addr(context), sizeof(unsigned int));
|
||||
os_flush_icache((os_vm_address_t) *os_context_pc_addr(context), sizeof(unsigned int));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Reference in a new issue