Module Name: src
Committed By: maya
Date: Sat Apr 13 17:18:26 UTC 2019
Modified Files:
src/lib/libm/arch/riscv: s_copysign.S
Log Message:
Don't alias the long double version to the double version.
We now have 128bit long double (by the upstream GCC changing things)
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/lib/libm/arch/riscv/s_copysign.S
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libm/arch/riscv/s_copysign.S
diff -u src/lib/libm/arch/riscv/s_copysign.S:1.4 src/lib/libm/arch/riscv/s_copysign.S:1.5
--- src/lib/libm/arch/riscv/s_copysign.S:1.4 Fri Mar 27 23:35:40 2015
+++ src/lib/libm/arch/riscv/s_copysign.S Sat Apr 13 17:18:26 2019
@@ -1,12 +1,9 @@
-/* $NetBSD: s_copysign.S,v 1.4 2015/03/27 23:35:40 matt Exp $ */
+/* $NetBSD: s_copysign.S,v 1.5 2019/04/13 17:18:26 maya Exp $ */
/* The contents of this file are in the public domain. */
#include <machine/asm.h>
-STRONG_ALIAS(_copysignl, copysign)
-WEAK_ALIAS(copysignl, _copysignl)
-
ENTRY(copysign)
fsgnj.d fa0, fa0, fa1
ret