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