aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/execute/930702-1.c
blob: 8828a701cb99ea02c920ae1745b15da48448cfdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fp (double a, int b)
{
  if (a != 33 || b != 11)
    abort ();
}

main ()
{
  int (*f) (double, int) = fp;

  fp (33, 11);
  f (33, 11);
  exit (0);
}