Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/lib/libm/arch/vax Add finitef
details: https://anonhg.NetBSD.org/src/rev/4284116818c5
branches: trunk
changeset: 533181:4284116818c5
user: matt <matt%NetBSD.org@localhost>
date: Sun Jun 23 21:55:12 2002 +0000
description:
Add finitef
diffstat:
lib/libm/arch/vax/n_support.S | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diffs (23 lines):
diff -r 5afbfc3e8cd8 -r 4284116818c5 lib/libm/arch/vax/n_support.S
--- a/lib/libm/arch/vax/n_support.S Sun Jun 23 21:54:37 2002 +0000
+++ b/lib/libm/arch/vax/n_support.S Sun Jun 23 21:55:12 2002 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: n_support.S,v 1.4 2002/02/24 01:06:21 matt Exp $ */
+/* $NetBSD: n_support.S,v 1.5 2002/06/23 21:55:12 matt Exp $ */
/*
* Copyright (c) 1985, 1993
* The Regents of the University of California. All rights reserved.
@@ -80,8 +80,12 @@
/*
* long finite(double x);
*/
+#ifndef __GFLOAT__
+ .globl finitef
+finitef = finite
+#endif
ENTRY(finite, 0)
- bicw3 $0x7f,4(%ap),%r0 # mask off the mantissa
+ bicw3 $0x7f,4(%ap),%r0 # mask off the mantissa
cmpw %r0,$0x8000 # to see if x is the reserved op
beql 1f # if so, return FALSE (0)
movl $1,%r0 # else return TRUE (1)
Home |
Main Index |
Thread Index |
Old Index