aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/debug/pr46409.c
blob: 066cb67aeebeb98f7280839390fb0e6b025efb41 (plain)
1
2
3
4
5
6
7
8
9
/* PR debug/46409 */
/* { dg-options "-g" } */

int
foo (int (*x) (unsigned long long), unsigned long long y)
{
  unsigned int z = x (y);
  return 0;
}