blob: 7d62ad11fafada198c8381b665cc7f653f24ad1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* { dg-do compile } */
/* { dg-additional-options "-march=skylake-avx512" { target x86_64-*-* i?86-*-* } } */
int a, c;
unsigned b, e;
extern unsigned d[100];
void f()
{
for (int g = 0; g < 70; g++)
{
b += d[g] - c;
e -= g ^ a;
}
}
|