Re: testsuite: gcc.c-torture/execute/ieee/cdivchkld.c needs fmaxl

2021-05-05 Thread Joseph Myers
On Tue, 4 May 2021, Christophe Lyon via Gcc-patches wrote: > The new test gcc.c-torture/execute/ieee/cdivchkld.c needs fmaxl(), > which may not be available, for instance on aarch64-elf with newlib. > As discussed in the PR, requiring c99_runtime enables to skip the test > in this case. > > 2021-

testsuite: gcc.c-torture/execute/ieee/cdivchkld.c needs fmaxl

2021-05-04 Thread Christophe Lyon via Gcc-patches
@@ -0,0 +1,4 @@ +if { [check_effective_target_c99_runtime] } { +return 0 +} +return 1 testsuite: gcc.c-torture/execute/ieee/cdivchkld.c needs fmaxl The new test gcc.c-torture/execute/ieee/cdivchkld.c needs fmaxl(), which may not be available, for instance on aarch64-elf with newlib. As