Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr117449.c
blob: 8ae0071fca6b7c76ce557192bc9b986b2ee7816e [
file
] [
log
] [
blame
]
/* { dg-additional-options "-march=armv8.2-a+sha3" { target aarch64*-*-* } } */
unsigned
long
*
a
;
int
i
;
void
f
()
{
for
(
i
=
0
;
i
<
80
;
i
++)
a
[
i
]
=
(
a
[
i
]
>>
8
|
a
[
i
]
<<
64
-
8
)
^
a
[
i
];
}