Kill redundant ;

This commit is contained in:
joerg 2011-06-18 21:24:51 +00:00
parent 4fc4fe2edf
commit 7d48645456
4 changed files with 8 additions and 8 deletions

View File

@ -7,7 +7,7 @@
#include "abi.h"
RCSID("$NetBSD: s_ceil.S,v 1.7 2003/07/26 19:25:00 salo Exp $")
RCSID("$NetBSD: s_ceil.S,v 1.8 2011/06/18 21:24:51 joerg Exp $")
ENTRY(ceil)
#ifdef __i386__
@ -22,7 +22,7 @@ ENTRY(ceil)
movw %dx,-8(%ebp)
fldcw -8(%ebp) /* load modfied control word */
fldl 8(%ebp); /* round */
fldl 8(%ebp) /* round */
frndint
fldcw -4(%ebp) /* restore original control word */

View File

@ -5,7 +5,7 @@
#include <machine/asm.h>
RCSID("$NetBSD: s_ceilf.S,v 1.8 2004/07/16 18:40:24 drochner Exp $")
RCSID("$NetBSD: s_ceilf.S,v 1.9 2011/06/18 21:24:51 joerg Exp $")
ENTRY(ceilf)
#ifdef __i386__
@ -20,7 +20,7 @@ ENTRY(ceilf)
movw %dx,-8(%ebp)
fldcw -8(%ebp) /* load modfied control word */
flds 8(%ebp); /* round */
flds 8(%ebp) /* round */
frndint
fldcw -4(%ebp) /* restore original control word */

View File

@ -5,7 +5,7 @@
#include <machine/asm.h>
RCSID("$NetBSD: s_floor.S,v 1.8 2003/07/26 19:25:02 salo Exp $")
RCSID("$NetBSD: s_floor.S,v 1.9 2011/06/18 21:24:51 joerg Exp $")
ENTRY(floor)
#ifdef __i386__
@ -20,7 +20,7 @@ ENTRY(floor)
movw %dx,-8(%ebp)
fldcw -8(%ebp) /* load modfied control word */
fldl 8(%ebp); /* round */
fldl 8(%ebp) /* round */
frndint
fldcw -4(%ebp) /* restore original control word */

View File

@ -5,7 +5,7 @@
#include <machine/asm.h>
RCSID("$NetBSD: s_floorf.S,v 1.7 2004/07/16 18:40:24 drochner Exp $")
RCSID("$NetBSD: s_floorf.S,v 1.8 2011/06/18 21:24:51 joerg Exp $")
ENTRY(floorf)
#ifdef __i386__
@ -20,7 +20,7 @@ ENTRY(floorf)
movw %dx,-8(%ebp)
fldcw -8(%ebp) /* load modfied control word */
flds 8(%ebp); /* round */
flds 8(%ebp) /* round */
frndint
fldcw -4(%ebp) /* restore original control word */