cen64/arch/arm/rsp/vxor.h
2014-08-19 15:18:28 +00:00

14 lines
293 B
C

//
// arch/arm/rsp/vxor.h
//
// This file is subject to the terms and conditions defined in
// 'LICENSE', which is part of this source code package.
//
#include "common.h"
#include <arm_neon.h>
static inline uint16x8_t rsp_vxor(uint16x8_t vs, uint16x8_t vt) {
return veorq_u16(vs, vt);
}