aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/xs.c
blob: 24f773e7577b3f4b8d19950ec2526ce4ca207a1b (plain)
1
2
3
4
5
6
7
8
9
foo (a, b)
{
  for (b = 0; b < 10; b++)
    ;
  for (a = 0; a < 10; a++)
    ;
  a = b << 1;
  return a;
}