aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr117449.c
blob: 8ae0071fca6b7c76ce557192bc9b986b2ee7816e (plain)
1
2
3
4
5
6
7
8
/* { 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];
}