Disable x87 inline functions for x86-64

This commit is contained in:
H.J. Lu 2012-06-15 06:52:47 -07:00
parent 36d54b744e
commit ed1825f858
2 changed files with 135 additions and 126 deletions

View File

@ -1,3 +1,10 @@
2012-06-15 H.J. Lu <hongjiu.lu@intel.com>
[BZ #14050]
[BZ #14117]
* sysdeps/i386/fpu/bits/mathinline.h: Disable x87 inline
functions if __x86_64__ is defined.
2012-06-15 Chung-Lin Tang <cltang@codesourcery.com>
* string/endian.h: Add !__ASSEMBLER__ condition for including

View File

@ -380,7 +380,9 @@ __NTH (floorf (float __x))
__END_NAMESPACE_C99
# endif
# endif
#endif
#ifndef __x86_64__
# if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \
&& defined __OPTIMIZE__)
@ -963,4 +965,4 @@ __inline_mathcode2 (__ieee754_atan2, __y, __x,
return __value;)
# endif
#endif /* __GNUC__ */
#endif /* !__x86_64__ */