diff options
author | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-07-30 18:00:24 +0300 |
---|---|---|
committer | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-07-30 18:00:24 +0300 |
commit | a9e8ea51cc8e800a81375d5f99f9a42c6be142a8 (patch) | |
tree | 5ae06685b5eff965ff38f7dfda226869d28c6fc8 /sysdeps/x86_64 | |
parent | 0e569d30e3936bb6c2cbb7aaf584d36c4cd09934 (diff) | |
download | glibc-a9e8ea51cc8e800a81375d5f99f9a42c6be142a8.tar.gz glibc-a9e8ea51cc8e800a81375d5f99f9a42c6be142a8.tar.xz glibc-a9e8ea51cc8e800a81375d5f99f9a42c6be142a8.zip |
Prevent runtime fail of SSE vector math tests on non SSE4.1 machine.
[BZ #18740] * sysdeps/x86_64/fpu/Makefile (double-vlen2-arch-ext-cflags, float-vlen4-arch-ext-cflags): Removed. * math/Makefile (CFLAGS-test-double-vlen2-wrappers.c, CFLAGS-test-float-vlen4-wrappers.c): Likewise.
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/fpu/Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/x86_64/fpu/Makefile b/sysdeps/x86_64/fpu/Makefile index e270b8af55..1ebe5118bf 100644 --- a/sysdeps/x86_64/fpu/Makefile +++ b/sysdeps/x86_64/fpu/Makefile @@ -33,12 +33,10 @@ ifeq (yes,$(config-cflags-avx512)) libmvec-tests += double-vlen8 float-vlen16 endif -double-vlen2-arch-ext-cflags = -msse4 double-vlen4-arch-ext-cflags = -mavx double-vlen4-arch-ext2-cflags = -mavx2 double-vlen8-arch-ext-cflags = -mavx512f -float-vlen4-arch-ext-cflags = -msse4 float-vlen8-arch-ext-cflags = -mavx float-vlen8-arch-ext2-cflags = -mavx2 float-vlen16-arch-ext-cflags = -mavx512f |