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

float a[16];
void 
foo ()
{
int i;
for (i = 0; i < 16/2; i++)
 {
 if (a[2*i+((0 +1)%2)] != (3 * (2*i+((0 +1)%2)) + 2))
  __builtin_abort ();
 }
}