aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/unsorted/cmpsi386.c
blob: 50b08d7126d653e7b6f8104f4fd0f534ac2d31f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
foo (a, p)
     register int a;
     int *p;
{

  for (a = 10000000; a >= *p; a--)
    ;
}

main ()
{
  int a;
  foo (a, a);
}