summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr80907.c
blob: 56e1d3625936345f5c0c990228f4a0fd558fcbce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* { dg-do compile } */
/* { dg-options "-O3 -Warray-bounds" } */



int x[3];
int n=2;
void foo() 
{
    for(int i=0;i<n;i++) for(int j=0;j<=i;j++) x[i+j]++;
}