I want to compare 2 int8x8_t
,
From http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html
we can get the description for vclt_s8
, but it does not tell us much details.
`uint8x8_t vclt_s8 (int8x8_t, int8x8_t)`
Form of expected instruction(s): vcgt.s8 d0, d0, d0
the return value uint8x8_t
, it confuse me for I can not use
if(vclt_s8(a, b))
to decide the first is smaller.
Then suppose we have two int8x8_t
: int8x8_t a
and int8x8_t b
, how do we know whether a
is smaller?