aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/shloop.c
blob: f4c9366394af46b259859409619eaf0ee3ce4ecc (plain)
1
2
3
4
5
6
7
main ()
{
  int volatile p;
  int i;
  for (i = 10000000; i > 0; i--)
    p = i >> 10;
}