summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr89223.c
blob: 1e828118ecb07341d0ace684c0aa858d580e378a (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile { target int128 } } */

int a[5];
unsigned __int128 b;
void c()
{
  b = 4;
  for (;; b--)
    a[b] = ({ a[b + b]; });
}