Module Name: src
Committed By: isaki
Date: Mon Jan 6 06:14:18 UTC 2025
Modified Files:
src/sys/arch/m68k/fpe: fpu_fstore.c
Log Message:
m68k/fpe: Remove redundant code.
This was assigned before the function was called.
To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/m68k/fpe/fpu_fstore.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/m68k/fpe/fpu_fstore.c
diff -u src/sys/arch/m68k/fpe/fpu_fstore.c:1.16 src/sys/arch/m68k/fpe/fpu_fstore.c:1.17
--- src/sys/arch/m68k/fpe/fpu_fstore.c:1.16 Fri Jan 3 05:54:07 2025
+++ src/sys/arch/m68k/fpe/fpu_fstore.c Mon Jan 6 06:14:17 2025
@@ -1,4 +1,4 @@
-/* $NetBSD: fpu_fstore.c,v 1.16 2025/01/03 05:54:07 isaki Exp $ */
+/* $NetBSD: fpu_fstore.c,v 1.17 2025/01/06 06:14:17 isaki Exp $ */
/*
* Copyright (c) 1995 Ken Nakata
@@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fpu_fstore.c,v 1.16 2025/01/03 05:54:07 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fpu_fstore.c,v 1.17 2025/01/06 06:14:17 isaki Exp $");
#include <sys/types.h>
#include <sys/signal.h>
@@ -61,8 +61,6 @@ fpu_emul_fstore(struct fpemu *fe, struct
format = (word1 >> 10) & 7;
regnum = (word1 >> 7) & 7;
- insn->is_advance = 4;
-
if (format == FTYPE_DBL) {
insn->is_datasize = 8;
} else if (format == FTYPE_SNG || format == FTYPE_LNG) {