This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 24/28] powerpc: hypot refactor and optimization


On Fri, 29 Mar 2019, Adhemerval Zanella wrote:

> +  if ((isinf(x) || isinf(y))
> +      && !issignaling (x) && !issignaling (y))
> +    return INFINITY;
> +  if (isnan(x) || isnan(y))
> +    return x + y;

Missign spaces before '('.

-- 
Joseph S. Myers
joseph@codesourcery.com


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]