Source-Changes-HG archive

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

[src/netbsd-7]: src/lib/libm/arch/m68k Pull up the following revision, reques...



details:   https://anonhg.NetBSD.org/src/rev/eaed1a0ebeeb
branches:  netbsd-7
changeset: 799384:eaed1a0ebeeb
user:      martin <martin%NetBSD.org@localhost>
date:      Thu May 28 10:00:08 2015 +0000

description:
Pull up the following revision, requested by joerg in #812:

        src/lib/libm/arch/m68k/s_copysign.S     1.10

Deal with the potential pressence of long double support.

diffstat:

 lib/libm/arch/m68k/s_copysign.S |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r bad67b45b8fe -r eaed1a0ebeeb lib/libm/arch/m68k/s_copysign.S
--- a/lib/libm/arch/m68k/s_copysign.S   Wed May 27 10:00:24 2015 +0000
+++ b/lib/libm/arch/m68k/s_copysign.S   Thu May 28 10:00:08 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: s_copysign.S,v 1.7.74.1 2015/05/27 09:22:56 msaitoh Exp $      */
+/*     $NetBSD: s_copysign.S,v 1.7.74.2 2015/05/28 10:00:08 martin Exp $       */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -34,14 +34,17 @@
  */
 
 #include <machine/asm.h>
+#include <machine/math.h>
 
 ;_sccsid:
 ;.asciz        "from: @(#)support.s    5.2 (Berkeley) 5/17/90"
 
-RCSID("$NetBSD: s_copysign.S,v 1.7.74.1 2015/05/27 09:22:56 msaitoh Exp $")
+RCSID("$NetBSD: s_copysign.S,v 1.7.74.2 2015/05/28 10:00:08 martin Exp $")
 
+#if !defined(__HAVE_LONG_DOUBLE)
 STRONG_ALIAS(_copysignl, copysign)
 WEAK_ALIAS(copysignl, _copysignl)
+#endif
 
 | copysign(x,y)
 | returns x with the sign of y.



Home | Main Index | Thread Index | Old Index