M7350/kernel/arch/x86/include/asm/xor.h
2024-09-09 08:52:07 +00:00

11 lines
200 B
C

#ifdef CONFIG_KMEMCHECK
/* kmemcheck doesn't handle MMX/SSE/SSE2 instructions */
# include <asm-generic/xor.h>
#else
#ifdef CONFIG_X86_32
# include "xor_32.h"
#else
# include "xor_64.h"
#endif
#endif