mirror of git://sourceware.org/git/glibc.git
x86: Use -mavx instead of -msse2avx
clang supports -msse2avx from version 19 and onwards, but it should
be gated as an option to assembler (either with -Wa or -Xassembler).
The -DSSE2AVX option was used because there were asm statements with
SSE-only instructions which was fixed by commit ff8be6152b.
Now we can simply use -mavx.
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
This commit is contained in:
parent
13cfd77bf5
commit
edd4dc7dc8
|
|
@ -150,13 +150,13 @@ CFLAGS-s_sin-fma4.c = -mfma4
|
|||
CFLAGS-s_tan-fma4.c = -mfma4
|
||||
CFLAGS-s_sincos-fma4.c = -mfma4
|
||||
|
||||
CFLAGS-e_atan2-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-e_exp-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-e_log-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-s_atan-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-s_sin-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-s_tan-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-s_sincos-avx.c = -msse2avx -DSSE2AVX
|
||||
CFLAGS-e_atan2-avx.c = -mavx
|
||||
CFLAGS-e_exp-avx.c = -mavx
|
||||
CFLAGS-e_log-avx.c = -mavx
|
||||
CFLAGS-s_atan-avx.c = -mavx
|
||||
CFLAGS-s_sin-avx.c = -mavx
|
||||
CFLAGS-s_tan-avx.c = -mavx
|
||||
CFLAGS-s_sincos-avx.c = -mavx
|
||||
|
||||
CFLAGS-s_modf-sse4_1.c = -msse4.1 -fno-builtin-modff32x -fno-builtin-modff64
|
||||
CFLAGS-s_modff-sse4_1.c = -msse4.1 -fno-builtin-modff32
|
||||
|
|
|
|||
Loading…
Reference in New Issue