ipa/98330 - avoid ICEing on call indirect call
[gcc.git] / gcc / testsuite / gcc.dg / pr98330.c
1 /* { dg-do compile } */
2 /* { dg-options "-O2" } */
3
4 float f (__typeof (__builtin_pow) fn, float x)
5 {
6 return fn (x, 2);
7 }