diff --git a/emulators/qemu/patches/misc-target-sparc_op_c b/emulators/qemu/patches/misc-target-sparc_op_c deleted file mode 100644 index e7efc52f687..00000000000 --- a/emulators/qemu/patches/misc-target-sparc_op_c +++ /dev/null @@ -1,12 +0,0 @@ -$OpenBSD: misc-target-sparc_op_c,v 1.1 2005/11/03 18:41:55 fgsch Exp $ ---- target-sparc/op.c.orig Tue Oct 25 02:31:41 2005 -+++ target-sparc/op.c Tue Oct 25 02:32:12 2005 -@@ -1301,7 +1301,7 @@ void OPPROTO op_flush_T0(void) - - void OPPROTO op_fnegs(void) - { -- FT0 = -FT1; -+ do_fnegs(); - } - - void OPPROTO op_fabss(void) diff --git a/emulators/qemu/patches/misc-target-sparc_op_helper_c b/emulators/qemu/patches/misc-target-sparc_op_helper_c deleted file mode 100644 index 7c97f80ae05..00000000000 --- a/emulators/qemu/patches/misc-target-sparc_op_helper_c +++ /dev/null @@ -1,15 +0,0 @@ -$OpenBSD: misc-target-sparc_op_helper_c,v 1.1 2005/11/03 18:41:55 fgsch Exp $ ---- target-sparc/op_helper.c.orig Tue Oct 25 02:31:48 2005 -+++ target-sparc/op_helper.c Tue Oct 25 02:32:36 2005 -@@ -26,6 +26,11 @@ void do_fabss(void) - FT0 = float32_abs(FT1); - } - -+void do_fnegs(void) -+{ -+ FT0 = -FT1; -+} -+ - #ifdef TARGET_SPARC64 - void do_fabsd(void) - {