summaryrefslogtreecommitdiff
path: root/lib/libc/arch/sparc
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-07-23 20:55:32 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-07-23 20:55:32 +0000
commite9d332cb6af71b2d65cdb6004debdb399d774993 (patch)
tree51948dc5b09e612265eb4a6eac4f727f428f9b9f /lib/libc/arch/sparc
parent48f72858c6c937f2a793a9209ea0bc1c2ede6697 (diff)
tabify
Diffstat (limited to 'lib/libc/arch/sparc')
-rw-r--r--lib/libc/arch/sparc/gen/fixunsdfsi.S4
-rw-r--r--lib/libc/arch/sparc/gen/frexp.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/sparc/gen/fixunsdfsi.S b/lib/libc/arch/sparc/gen/fixunsdfsi.S
index cd7471d0055..a8b7b0574cf 100644
--- a/lib/libc/arch/sparc/gen/fixunsdfsi.S
+++ b/lib/libc/arch/sparc/gen/fixunsdfsi.S
@@ -37,7 +37,7 @@
#if defined(LIBC_SCCS)
.text
- .asciz "$OpenBSD: fixunsdfsi.S,v 1.2 1996/08/19 08:17:27 tholo Exp $"
+ .asciz "$OpenBSD: fixunsdfsi.S,v 1.3 1997/07/23 20:55:29 kstailey Exp $"
#endif /* LIBC_SCCS */
/*
@@ -68,7 +68,7 @@ ENTRY(__fixunsdfsi)
fcmped %f0, %f2 ! d < 2^31, or NaN, or -Inf?
nop ! (fpop2 delay)
fbul,a 1f ! if so, use fdtoi to convert to int
- fdtoi %f0, %f0 ! (this includes negatives!)
+ fdtoi %f0, %f0 ! (this includes negatives!)
! d does not fit in an int, so subtract 2^31, convert,
! and add 2^31 again (sigh). Just hope the intermediate
diff --git a/lib/libc/arch/sparc/gen/frexp.c b/lib/libc/arch/sparc/gen/frexp.c
index 125cf252bd0..2dcc0300fc9 100644
--- a/lib/libc/arch/sparc/gen/frexp.c
+++ b/lib/libc/arch/sparc/gen/frexp.c
@@ -36,7 +36,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: frexp.c,v 1.2 1996/08/19 08:17:36 tholo Exp $";
+static char rcsid[] = "$OpenBSD: frexp.c,v 1.3 1997/07/23 20:55:30 kstailey Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -53,7 +53,7 @@ frexp(value, eptr)
int *eptr;
{
union {
- double v;
+ double v;
struct ieee_double s;
} u;