PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / arm / crypto-vaeseq_u8.c
blobf47864662ebe42d7d51ae1284f90d530a6425f10
1 /* { dg-do compile } */
2 /* { dg-require-effective-target arm_crypto_ok } */
3 /* { dg-add-options arm_crypto } */
5 #include "arm_neon.h"
7 int
8 foo (void)
10 uint8x16_t a, b, c;
11 int i = 0;
13 for (i = 0; i < 16; ++i)
15 a[i] = i;
16 b[i] = 15 - i;
18 c = vaeseq_u8 (a, b);
19 return c[0];
22 /* { dg-final { scan-assembler "aese.8\tq\[0-9\]+, q\[0-9\]+" } } */