diff options
author | Richard Henderson <rth@twiddle.net> | 2012-03-07 09:19:26 -0800 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2012-03-09 08:08:11 -0800 |
commit | 38842f4553f5dfebd8c276e07dbbbadc60921fef (patch) | |
tree | baa66f058b3158254b6abb474b46422954068ee9 | |
parent | c64bf5feb39e7ad7235ed140a8cdb142bd28608b (diff) | |
download | glibc-38842f4553f5dfebd8c276e07dbbbadc60921fef.tar glibc-38842f4553f5dfebd8c276e07dbbbadc60921fef.tar.gz glibc-38842f4553f5dfebd8c276e07dbbbadc60921fef.tar.bz2 glibc-38842f4553f5dfebd8c276e07dbbbadc60921fef.zip |
Use target-specific math_private.h in math_ldbl_opt.h.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2012-03-08 Richard Henderson <rth@twiddle.net> + + * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Include <math_private.h>, + not <math/math_private.h>. + 2012-03-08 David S. Miller <davem@davemloft.net> * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c: Update diff --git a/sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h b/sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h index 77ab26370d..b0b863cba5 100644 --- a/sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h +++ b/sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h @@ -37,7 +37,7 @@ #ifndef __ASSEMBLER__ # include <math.h> -# include <math/math_private.h> +# include <math_private.h> /* Set temporarily to non-zero if long double should be considered the same as double. */ |