views:

59

answers:

1

Hi, I could not find any intrinsics for a simple xor operation.

See: http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html

Are there really no way to use NEON instructions for this?

+4  A: 

The instructions are called eor (Exclusive OR).

mortenvp
They're even clearly labeled on the page the questioner linked: "6.53.3.78 Logical operations (exclusive OR)"
Stephen Canon