https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107046
--- Comment #8 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Jakub Jelinek <ja...@gcc.gnu.org>: https://gcc.gnu.org/g:8872df353884fec6d7ff0e8bf8eee356439ec8d8 commit r13-4504-g8872df353884fec6d7ff0e8bf8eee356439ec8d8 Author: Jakub Jelinek <ja...@redhat.com> Date: Tue Dec 6 11:39:51 2022 +0100 testsuite: Use -mnofpu for rx-*-* in ieee testsuite [PR107046] add_options_for_ieee has: if { [istarget alpha*-*-*] || [istarget sh*-*-*] } { return "$flags -mieee" } if { [istarget rx-*-*] } { return "$flags -mnofpu" } but ieee.exp doesn't use add_options_for_ieee, instead it has: if { [istarget "alpha*-*-*"] || [istarget "sh*-*-*"] } then { lappend additional_flags "-mieee" } among other things (plus -ffloat-store on some arches etc.). The following patch adds the rx -mnofpu similarly in the hope of fixing ieee.exp FAILs on rx. Preapproved in the PR by Jeff, committed to trunk. 2022-12-06 Jakub Jelinek <ja...@redhat.com> PR testsuite/107046 * gcc.c-torture/execute/ieee/ieee.exp: For rx-*-* append -mnofpu.