> On Nov 1, 2018, at 4:52 PM, Joseph Myers <jos...@codesourcery.com> wrote:
>
> On Thu, 1 Nov 2018, Paul Koning wrote:
>
>> +@item inf
>> +Target supports floating point infinite (@code{inf}).
>> @end table
>
> Do you mean supports infinity for type double? (That's what the
> implementation does.) Supporting it for double is not the same as
> supporting it for float (SPU supports it for double but not float, hence
> various such tests, which require infinities or NaNs (or other IEEE
> features SPU doesn't have) for float, being disabled for SPU).)
Yes, I do mean for double. I suppose I should say that.
I noticed SPU avoids using __builtin_inff by conditional compile. I thought of
adding an "inff" flag also. The reason I didn't is that my target does not
need that, so I would end up with a new feature that would only be applied on
targets I do not know.
paul