aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr116348.c
blob: 97ab0181ab8b1d494630e900e090c51df66303bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-additional-options "-march=znver4" { target x86_64-*-* i?86-*-* } } */

int *a;
int b;
long long c, d;
void
e (int f)
{
  for (; f; f++)
    {
      d += (long long)a[f] * b;
      c += (long long)a[f] * 3;
    }
}