aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/complex-1.c
blob: 6ba9f04694d677c33b58e1e1ec9a62f4505e26ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extern void u (int, int);
extern void v (float, float);

void f (__complex__ int x)
{
  u (0, x);
}

void g (__complex__ float x)
{
  v (0, x);
}