blob: 23796fcdaa91e7a098df10cfdecceb372a5307ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/* { dg-require-effective-target trampolines } */
main ()
{
int i = 0;
int a (int x)
{
while (x)
i++, x--;
return x;
}
if (a (2) != 0)
abort ();
exit (0);
}
|