diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2018-08-03 08:04:49 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2018-08-03 08:05:00 -0700 |
commit | 430388d5dc0e1861b869096f4f5d946d7d74232a (patch) | |
tree | 5b4dd649ceed21089c218b71a1f725d522f7978e /sysdeps/x86_64/fpu | |
parent | 6b535b842378b77863c1fd6186d4682c59fca133 (diff) | |
download | glibc-430388d5dc0e1861b869096f4f5d946d7d74232a.tar glibc-430388d5dc0e1861b869096f4f5d946d7d74232a.tar.gz glibc-430388d5dc0e1861b869096f4f5d946d7d74232a.tar.bz2 glibc-430388d5dc0e1861b869096f4f5d946d7d74232a.zip |
x86: Don't include <init-arch.h> in assembly codes
There is no need to include <init-arch.h> in assembly codes since all
x86 IFUNC selector functions are written in C. Tested on i686 and
x86-64. There is no code change in libc.so, ld.so and libmvec.so.
* sysdeps/i386/i686/multiarch/bzero-ia32.S: Don't include
<init-arch.h>.
* sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S: Likewise.
* sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S: Likewise.
* sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S: Likewise.
Diffstat (limited to 'sysdeps/x86_64/fpu')
-rw-r--r-- | sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S | 1 | ||||
-rw-r--r-- | sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S b/sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S index b64c3390d6..87536a06a3 100644 --- a/sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S +++ b/sysdeps/x86_64/fpu/multiarch/svml_d_sin8_core-avx2.S @@ -17,7 +17,6 @@ <http://www.gnu.org/licenses/>. */ #include <sysdep.h> -#include <init-arch.h> #define _ZGVeN8v_sin _ZGVeN8v_sin_avx2_wrapper #include "../svml_d_sin8_core.S" diff --git a/sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S b/sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S index e0b7fd787f..16713ba714 100644 --- a/sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S +++ b/sysdeps/x86_64/fpu/multiarch/svml_s_expf16_core-avx2.S @@ -17,7 +17,6 @@ <http://www.gnu.org/licenses/>. */ #include <sysdep.h> -#include <init-arch.h> #define _ZGVeN16v_expf _ZGVeN16v_expf_avx2_wrapper #include "../svml_s_expf16_core.S" |