mirror of git://sourceware.org/git/glibc.git
Fix comment error that Jakub pointed out but I forgot to fix
This commit is contained in:
parent
508ce3acd9
commit
e44c8b0eb7
|
@ -1,5 +1,7 @@
|
||||||
2014-08-13 Siddhesh Poyarekar <siddhesh@redhat.com>
|
2014-08-13 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/x86/fpu/bits/mathinline.h: Fix typo in comment.
|
||||||
|
|
||||||
[BZ #17262]
|
[BZ #17262]
|
||||||
* sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
|
* sysdeps/x86/fpu/bits/mathinline.h: Check both __SSE2_MATH__
|
||||||
and __x86_64__ when disabling x87 inline functions.
|
and __x86_64__ when disabling x87 inline functions.
|
||||||
|
|
|
@ -385,7 +385,7 @@ __END_NAMESPACE_C99
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Disable x87 inlines when -fpmath=sse is passed and also when we're building
|
/* Disable x87 inlines when -fpmath=sse is passed and also when we're building
|
||||||
on x86_64. Older gcc (gcc-3.2 for example) does not set __SSE2_MATH__
|
on x86_64. Older gcc (gcc-3.2 for example) does not define __SSE2_MATH__
|
||||||
for x86_64. */
|
for x86_64. */
|
||||||
#if !defined __SSE2_MATH__ && !defined __x86_64__
|
#if !defined __SSE2_MATH__ && !defined __x86_64__
|
||||||
# if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \
|
# if ((!defined __NO_MATH_INLINES || defined __LIBC_INTERNAL_MATH_INLINES) \
|
||||||
|
|
Loading…
Reference in New Issue