[Git][cmucl/cmucl][master] Actually remove RESTORE_FPU's that were #if'ed out.
Raymond Toy
rtoy at common-lisp.net
Sat Jan 16 16:34:06 UTC 2016
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
17932a00 by Raymond Toy at 2016-01-16T08:33:55Z
Actually remove RESTORE_FPU's that were #if'ed out.
- - - - -
1 changed file:
- src/lisp/interrupt.c
Changes:
=====================================
src/lisp/interrupt.c
=====================================
--- a/src/lisp/interrupt.c
+++ b/src/lisp/interrupt.c
@@ -252,10 +252,6 @@ interrupt_handle_now(HANDLER_ARGS)
handler = interrupt_handlers[signal];
-#if 0
- RESTORE_FPU(context);
-#endif
-
if (handler.c == (void (*)(HANDLER_ARGS)) SIG_IGN)
return;
@@ -335,9 +331,6 @@ maybe_now_maybe_later(HANDLER_ARGS)
setup_pending_signal(signal, code, context);
arch_set_pseudo_atomic_interrupted(context);
} else {
-#if 0
- RESTORE_FPU(context);
-#endif
interrupt_handle_now(signal, code, context);
}
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/17932a00d691bb2dada5da81fecc36f76fefb2a8
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.common-lisp.net/pipermail/cmucl-cvs/attachments/20160116/04705963/attachment.html>
More information about the cmucl-cvs
mailing list