Re: [PATCH, testsuite] add "inf" target attribute

2018-11-05 Thread Paul Koning
> On Nov 4, 2018, at 2:33 PM, Jeff Law wrote: > > On 11/1/18 1:30 PM, Paul Koning wrote: >> A number of test cases fail on pdp11 because they use the "inf" float value >> which does not exist on that target (nor on VAX). Rainer Orth and Joseph >> Myers suggested adding a new effective-targe

Re: [PATCH, testsuite] add "inf" target attribute

2018-11-04 Thread Jeff Law
On 11/1/18 1:30 PM, Paul Koning wrote: > A number of test cases fail on pdp11 because they use the "inf" float value > which does not exist on that target (nor on VAX). Rainer Orth and Joseph > Myers suggested adding a new effective-target keyword to check for this, and > require it for tests t

Re: [PATCH, testsuite] add "inf" target attribute

2018-11-01 Thread Paul Koning
> On Nov 1, 2018, at 4:52 PM, Joseph Myers 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 fo

Re: [PATCH, testsuite] add "inf" target attribute

2018-11-01 Thread Joseph Myers
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

[PATCH, testsuite] add "inf" target attribute

2018-11-01 Thread Paul Koning
A number of test cases fail on pdp11 because they use the "inf" float value which does not exist on that target (nor on VAX). Rainer Orth and Joseph Myers suggested adding a new effective-target keyword to check for this, and require it for tests that have that dependency. The attached patch i