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 | |
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.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | sysdeps/i386/i686/multiarch/bzero-ia32.S | 1 | ||||
-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 | ||||
-rw-r--r-- | sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S | 1 |
5 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,11 @@ +2018-08-03 H.J. Lu <hongjiu.lu@intel.com> + + * 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. + 2018-08-03 Carlos O'Donell <carlos@redhat.com> * po/be.po: Update translation. diff --git a/sysdeps/i386/i686/multiarch/bzero-ia32.S b/sysdeps/i386/i686/multiarch/bzero-ia32.S index 68ff9e1e90..94d13e88f7 100644 --- a/sysdeps/i386/i686/multiarch/bzero-ia32.S +++ b/sysdeps/i386/i686/multiarch/bzero-ia32.S @@ -17,7 +17,6 @@ <http://www.gnu.org/licenses/>. */ #include <sysdep.h> -#include <init-arch.h> #if IS_IN (libc) # define __bzero __bzero_ia32 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" diff --git a/sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S b/sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S index be6671759b..56b81f5cc5 100644 --- a/sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S +++ b/sysdeps/x86_64/multiarch/memset-sse2-unaligned-erms.S @@ -19,7 +19,6 @@ #include <sysdep.h> #include <shlib-compat.h> -#include <init-arch.h> #if IS_IN (libc) # define MEMSET_SYMBOL(p,s) p##_sse2_##s |