Skip to content
Snippets Groups Projects
Commit 17932a00 authored by Raymond Toy's avatar Raymond Toy
Browse files

Actually remove RESTORE_FPU's that were #if'ed out.

parent f613124b
No related branches found
No related tags found
No related merge requests found
...@@ -252,10 +252,6 @@ interrupt_handle_now(HANDLER_ARGS) ...@@ -252,10 +252,6 @@ interrupt_handle_now(HANDLER_ARGS)
handler = interrupt_handlers[signal]; handler = interrupt_handlers[signal];
#if 0
RESTORE_FPU(context);
#endif
if (handler.c == (void (*)(HANDLER_ARGS)) SIG_IGN) if (handler.c == (void (*)(HANDLER_ARGS)) SIG_IGN)
return; return;
...@@ -335,9 +331,6 @@ maybe_now_maybe_later(HANDLER_ARGS) ...@@ -335,9 +331,6 @@ maybe_now_maybe_later(HANDLER_ARGS)
setup_pending_signal(signal, code, context); setup_pending_signal(signal, code, context);
arch_set_pseudo_atomic_interrupted(context); arch_set_pseudo_atomic_interrupted(context);
} else { } else {
#if 0
RESTORE_FPU(context);
#endif
interrupt_handle_now(signal, code, context); interrupt_handle_now(signal, code, context);
} }
......
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