OSDN Git Service

PR middle-end/35456
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / execute / 930702-1.c
1 fp (double a, int b)
2 {
3   if (a != 33 || b != 11)
4     abort ();
5 }
6
7 main ()
8 {
9   int (*f) (double, int) = fp;
10
11   fp (33, 11);
12   f (33, 11);
13   exit (0);
14 }