From c86ab84d63b20aff7cf391414009a38477fe7137 Mon Sep 17 00:00:00 2001 From: joseph Date: Tue, 25 Oct 2011 16:50:31 +0000 Subject: Merge changes between r15532 and r15557 from /fsf/trunk. git-svn-id: svn://svn.eglibc.org/trunk@15558 7b3dc134-2b1b-0410-93df-9e9f96275f8d --- libc/sysdeps/ieee754/dbl-64/doasin.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/ieee754/dbl-64/doasin.c') diff --git a/libc/sysdeps/ieee754/dbl-64/doasin.c b/libc/sysdeps/ieee754/dbl-64/doasin.c index c21d4b7df..14958b5ca 100644 --- a/libc/sysdeps/ieee754/dbl-64/doasin.c +++ b/libc/sysdeps/ieee754/dbl-64/doasin.c @@ -34,11 +34,17 @@ #include #include "math_private.h" +#ifndef SECTION +# define SECTION +#endif + /********************************************************************/ /* Compute arcsin(x,dx,v) of double-length number (x+dx) the result */ /* stored in v where v= v[0]+v[1] =arcsin(x+dx) */ /********************************************************************/ -void __doasin(double x, double dx, double v[]) { +void +SECTION +__doasin(double x, double dx, double v[]) { #include "doasin.h" @@ -53,7 +59,7 @@ void __doasin(double x, double dx, double v[]) { double xx,p,pp,u,uu,r,s; double tc,tcc; -#ifndef DLA_FMA +#ifndef DLA_FMS double hx,tx,hy,ty,tp,tq; #endif -- cgit v1.2.1