https://gcc.gnu.org/bugzilla/show_bug.cgi?id=103075
--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Richard Biener <rgue...@gcc.gnu.org>: https://gcc.gnu.org/g:d13603501680fcdbb933cb086cd01fcc39be1908 commit r12-4898-gd13603501680fcdbb933cb086cd01fcc39be1908 Author: Richard Biener <rguent...@suse.de> Date: Thu Nov 4 09:17:18 2021 +0100 rtl-optimization/103075 - avoid ICEing on unfolded int-to-float converts The following avoids asserting in exact_int_to_float_conversion_p that the argument is not constant which it in fact can be with -frounding-math and inexact int-to-float conversions. Say so. 2021-11-04 Richard Biener <rguent...@suse.de> PR rtl-optimization/103075 * simplify-rtx.c (exact_int_to_float_conversion_p): Return false for a VOIDmode operand. * gcc.dg/pr103075.c: New testcase.