aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr71606.c
blob: b0cc26ac77152419dc3422efb1f285612b4dc950 (plain)
1
2
3
4
5
6
7
8
9
10
11
_Complex a;
void fn1 ();

int main () {
  fn1 (a);
  return 0;
}

void fn1 (__complex__ long double p1) {
  __imag__ p1 = 6.0L;
}