Source-Changes-HG archive

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

[src/netbsd-1-6]: src/lib/libm/arch/vax Pull up revision 1.5 (requested by ma...



details:   https://anonhg.NetBSD.org/src/rev/235b3e489c21
branches:  netbsd-1-6
changeset: 528076:235b3e489c21
user:      lukem <lukem%NetBSD.org@localhost>
date:      Mon Jun 24 13:21:05 2002 +0000

description:
Pull up revision 1.5 (requested by matt in ticket #354):
Add finitef

diffstat:

 lib/libm/arch/vax/n_support.S |  8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diffs (23 lines):

diff -r 316d08da092c -r 235b3e489c21 lib/libm/arch/vax/n_support.S
--- a/lib/libm/arch/vax/n_support.S     Mon Jun 24 13:19:31 2002 +0000
+++ b/lib/libm/arch/vax/n_support.S     Mon Jun 24 13:21:05 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.4.2.1 2002/06/24 13:21:05 lukem 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