git: 9front

Download patch

ref: fc9e8b2b11001c3f90fbf6cefb0ec612c754da2c
parent: 7c6216c06989f27d0822b95ecca9d52747c31dd8
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Tue Nov 25 18:41:30 EST 2025

xen: remove fpoff() call in execregs()

This is done in procsetup() already.

--- a/sys/src/9/xen/trap.c
+++ b/sys/src/9/xen/trap.c
@@ -450,9 +450,6 @@
 	ulong *sp;
 	Ureg *ureg;
 
-	up->fpstate = FPinit;
-	fpoff();
-
 	sp = (ulong*)(USTKTOP - ssize);
 	*--sp = nargs;
 
--