1 /* { dg-do compile } */
2 
3 float foo (float) __attribute__ ((target ("custom-fsqrts=128")));
foo(float x)4 float foo (float x)
5 {
6   return __builtin_custom_fsqrts (x) + __builtin_custom_fnf (128, x);
7 }
8