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 v2] Fix maybe-uninitialized error on powerpc



On 18/01/20 3:34 am, Joseph Myers wrote:
> On Fri, 17 Jan 2020, Matheus Castanho wrote:
> 
>> +
>> +  /* t == 0 will never happen at this point, since 1/t can only be 0 if t is
>> +     infinity, but before the division t == mantissa of x (exponent is 0).  We
>> +     can instruct the compiler to ignore this case.  */
>> +  if (t == 0)
>> +    __builtin_unreachable();
> 
> This needs a space before '()'.
> 
> OK with that change, but Siddhesh will need to confirm if it's OK to push 
> at this development stage, and you'll need to say if you need someone to 
> push it for you.
> 

This is fine.

Thanks,
Siddhesh


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