repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix warning with -Wsign-compare -Wsystem-headers
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
arm
/
crypto-vaesmcq_u8.c
blob
cae8bd096b85777ed42ca652b4fd1522d70d1c8d
1
/* { dg-do compile } */
2
/* { dg-require-effective-target arm_crypto_ok } */
3
/* { dg-add-options arm_crypto } */
4
5
#include
"arm_neon.h"
6
7
int
8
foo
(
void
)
9
{
10
uint8x16_t a
,
b
;
11
int
i
=
0
;
12
13
for
(
i
=
0
;
i
<
16
; ++
i
)
14
a
[
i
] =
i
;
15
16
b
=
vaesmcq_u8
(
a
);
17
return
b
[
0
];
18
}
19
20
/* { dg-final { scan-assembler "aesmc.8\tq\[0-9\]+, q\[0-9\]+" } } */