> On Oct 31, 2018, at 3:55 PM, Segher Boessenkool <seg...@kernel.crashing.org>
> wrote:
>
> On Wed, Oct 31, 2018 at 02:20:38PM -0400, Paul Koning wrote:
>> I see some test cases that say dg-add-options ieee. That apparently means:
>> pretend we have IEEE float even when the target does not.
>
> It means:
>
> (from testsuite/lib/target-supports.exp)
>
> ===
> # Add to FLAGS all the target-specific flags needed to enable
> # full IEEE compliance mode.
>
> ...
>
> i.e. add those options that make the floating point IEEE compliant.
> If your target cannot do that, it should skip the tests that need IEEE float
> (and if it can do it, but it is (possibly) not the default, code needs to
> be added here for your target).
>
>> ...
>
> On some targets IEEE float is not the default, but those targets can still
> do it if you pass certain options.
>
>
> Segher
Ok, thanks. So adding a dg-skip-if for my target is indeed correct. Will do
so.
paul