diff options
author | 2002-10-11 12:41:09 +0000 | |
---|---|---|
committer | 2002-10-11 12:41:09 +0000 | |
commit | 1f9e2821123f36bc2aea7701df1770c12184b13c (patch) | |
tree | d9d5b55f22a55ebf2216811786f24c1d2eb35173 /lib/libm/arch | |
parent | make CBQ aware of the pf API so that pf developers can play with CBQ. (diff) | |
download | wireguard-openbsd-1f9e2821123f36bc2aea7701df1770c12184b13c.tar.xz wireguard-openbsd-1f9e2821123f36bc2aea7701df1770c12184b13c.zip |
scalb() in vax libm is in fact scalbn(), so change the symbol name.
Only affects vax, which has no shared libraries, so no version change
needed for libm.
Someone with enough math skills ought to code a real scalb() on a rainy day...
Diffstat (limited to 'lib/libm/arch')
-rw-r--r-- | lib/libm/arch/vax/n_support.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libm/arch/vax/n_support.S b/lib/libm/arch/vax/n_support.S index 341d353498e..084c8a5121c 100644 --- a/lib/libm/arch/vax/n_support.S +++ b/lib/libm/arch/vax/n_support.S @@ -41,7 +41,7 @@ _sccsid: /* * copysign(x,y), * logb(x), - * scalb(x,N), + * scalbn(x,N), * finite(x), * drem(x,y), * Coded in vax assembly language by K.C. Ng, 3/14/85. @@ -103,14 +103,14 @@ _finite: ret /* - * double scalb(x,N) + * double scalbn(x,N) * double x; double N; */ - .globl _scalb + .globl _scalbn .set ERANGE,34 .text .align 1 -_scalb: +_scalbn: .word 0x3c movq 4(ap),r0 bicl3 $0xffff807f,r0,r3 |