Beispiel #1
0
void
test_double_hypot (void)
{
  int i;

  for (i = 0; i < SIZE; i++)
    d1[i] = __builtin_hypot (d2[i], d3[i]);
}
inline Y hypot(const Y& v1,const Y& v2)
{
    return __builtin_hypot(v1,v2);
}