What am I missing? I am getting this error: Unknown symbolic operand name in inline assembly string.
#if defined(__MATH_NEON_64)
int x0 = 4;
const int* pX0 = &x0;
asm(
"ld1.1s {v0}, [%[x0]] \n\t"
:"+r"(pX0) :: "memory");
#endif
EDIT: ok this compiles now.
#if defined(__MATH_NEON_64)
int x0 = 4;
const int* pX0 = &x0;
asm(
"ld1.2s {v0}, [%[x0]] \n\t"
:[x0] "+r" (pX0) :: "v0", "memory");
#endif