Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Group AVX512 functions in .text.avx512 section
	* sysdeps/x86_64/multiarch/memcpy-avx512-no-vzeroupper.S:
	Replace .text with .text.avx512.
	* sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S:
	Likewise.
  • Loading branch information
H.J. Lu committed Mar 7, 2016
1 parent 8a74071 commit fee9eb6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
@@ -1,3 +1,10 @@
2016-03-06 H.J. Lu <hongjiu.lu@intel.com>

* sysdeps/x86_64/multiarch/memcpy-avx512-no-vzeroupper.S:
Replace .text with .text.avx512.
* sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S:
Likewise.

2016-03-07 Aurelien Jarno <aurelien@aurel32.net>

* sysdeps/generic/libnsl.abilist: New file.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/x86_64/multiarch/memcpy-avx512-no-vzeroupper.S
Expand Up @@ -29,7 +29,7 @@
# define MEMCPY_CHK __memcpy_chk_avx512_no_vzeroupper
#endif

.section .text,"ax",@progbits
.section .text.avx512,"ax",@progbits
#if !defined USE_AS_BCOPY
ENTRY (MEMCPY_CHK)
cmpq %rdx, %rcx
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/x86_64/multiarch/memset-avx512-no-vzeroupper.S
Expand Up @@ -26,7 +26,7 @@
# define MEMSET_CHK __memset_chk_avx512_no_vzeroupper
#endif

.section .text,"ax",@progbits
.section .text.avx512,"ax",@progbits
#if defined PIC
ENTRY (MEMSET_CHK)
cmpq %rdx, %rcx
Expand Down

0 comments on commit fee9eb6

Please sign in to comment.