mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-15 21:01:45 -05:00
10 lines
129 B
C++
10 lines
129 B
C++
#include <arm_neon.h>
|
|
#include <stdint.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
uint32x4_t x={0};
|
|
x=veorq_u32(x,x);
|
|
return 0;
|
|
}
|