Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/i386 Use explicit size with fld.



details:   https://anonhg.NetBSD.org/src/rev/ec2fdb6d7684
branches:  trunk
changeset: 763388:ec2fdb6d7684
user:      joerg <joerg%NetBSD.org@localhost>
date:      Fri Mar 18 15:32:02 2011 +0000

description:
Use explicit size with fld.

diffstat:

 sys/arch/i386/i386/cpufunc.S |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1a4b9af7cfd1 -r ec2fdb6d7684 sys/arch/i386/i386/cpufunc.S
--- a/sys/arch/i386/i386/cpufunc.S      Fri Mar 18 15:31:38 2011 +0000
+++ b/sys/arch/i386/i386/cpufunc.S      Fri Mar 18 15:32:02 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: cpufunc.S,v 1.14 2008/12/02 17:56:06 ad Exp $  */
+/*     $NetBSD: cpufunc.S,v 1.15 2011/03/18 15:32:02 joerg Exp $       */
 
 /*-
  * Copyright (c) 1998, 2007 The NetBSD Foundation, Inc.
@@ -36,7 +36,7 @@
  */
 
 #include <machine/asm.h>
-__KERNEL_RCSID(0, "$NetBSD: cpufunc.S,v 1.14 2008/12/02 17:56:06 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpufunc.S,v 1.15 2011/03/18 15:32:02 joerg Exp $");
 
 #include "opt_xen.h"
 
@@ -351,7 +351,7 @@
 ENTRY(fldummy)
        movl    4(%esp), %eax
        ffree   %st(7)
-       fld     (%eax)
+       flds    (%eax)
        ret
 END(fldummy)
 



Home | Main Index | Thread Index | Old Index