glibc/sysdeps/x86_64/multiarch/memmove-avx512-unaligned-erms.S
Noah Goldstein 4fb7d8a938 x86: Update memmove to use new VEC macros
Replace %VEC(n) -> %VMM(n)

This commit does not change libc.so

Tested build on x86-64
2022-10-14 21:21:58 -07:00

13 lines
208 B
ArmAsm

#include <isa-level.h>
#if ISA_SHOULD_BUILD (4)
# include "x86-evex512-vecs.h"
# ifndef MEMMOVE_SYMBOL
# define MEMMOVE_SYMBOL(p,s) p##_avx512_##s
# endif
# include "memmove-vec-unaligned-erms.S"
#endif