Re: [libstdc++][testsuite] Fix dg-options/dg-add-options order

2018-01-19 Thread Christophe Lyon
On 19 January 2018 at 11:12, Jonathan Wakely wrote: > On 19/01/18 09:44 +0100, Christophe Lyon wrote: >> >> Hi, >> >> While checking dg directives order, I've noticed a few libstdc++ tests >> where the current order is: >> // { dg-add-options ieee } >> // { dg-options "-D__STDCPP_WANT_MATH_SPEC_FU

Re: [libstdc++][testsuite] Fix dg-options/dg-add-options order

2018-01-19 Thread Jonathan Wakely
On 19/01/18 09:44 +0100, Christophe Lyon wrote: Hi, While checking dg directives order, I've noticed a few libstdc++ tests where the current order is: // { dg-add-options ieee } // { dg-options "-D__STDCPP_WANT_MATH_SPEC_FUNCS__" } while dg-add-options should be after dg-options. Yes, those ar

[libstdc++][testsuite] Fix dg-options/dg-add-options order

2018-01-19 Thread Christophe Lyon
Hi, While checking dg directives order, I've noticed a few libstdc++ tests where the current order is: // { dg-add-options ieee } // { dg-options "-D__STDCPP_WANT_MATH_SPEC_FUNCS__" } while dg-add-options should be after dg-options. The attached patch fixes that, is that OK for stage4? I've test