aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr70263-1.c
blob: d4bf28043f3eb91b941130c34ca36ece11a3e839 (plain)
1
2
3
4
5
6
7
8
9
10
11
int a[91];
int b, c;
void fn1() {
  int n, m;
  do {
    a[c--];
    a[--c] = m;
    a[--m] = b;
  } while (n);
}