blob: 4e4b4635f932e3888a41360a19e606c2027c040c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <isa-level.h>
#if ISA_SHOULD_BUILD (3)
# include "x86-avx-vecs.h"
# ifndef MEMMOVE_SYMBOL
# define MEMMOVE_SYMBOL(p,s) p##_avx_##s
# endif
# include "memmove-vec-unaligned-erms.S"
# if MINIMUM_X86_ISA_LEVEL == 3
# include "memmove-shlib-compat.h"
# endif
#endif
|