https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95118
--- Comment #6 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:568c985113b29574c4e25e1a016475668fc17c28 commit r11-383-g568c985113b29574c4e25e1a016475668fc17c28 Author: Richard Biener <rguent...@suse.de> Date: Thu May 14 08:53:03 2020 +0200 middle-end/95118 - fix printing of denormal zero This fixes printing a REAL_CST generated from value-numbering punning some bits to a real which turns out as zero with big negative exponent. This causes the loop in real_to_decimal_for_mode to never terminate. 2020-05-14 Richard Biener <rguent...@suse.de> PR middle-end/95118 * real.c (real_to_decimal_for_mode): Make sure we handle a zero with nonzero exponent. * gcc.dg/pr95118.c: New testcase.