From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 4562B395B054; Tue, 23 Jun 2020 11:06:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 4562B395B054 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1592910392; bh=uTv7hUp8Nw7EEKtCxeoW3CtYFuhgBTiXFmd0Ty58c0o=; h=From:To:Subject:Date:In-Reply-To:References:From; b=qtLLbQu7N7wsWj6dJAJDaQiXxnET9cw8Arly7hU75cYUTL6cSayxCc3D6DDcOihTV 1WcHjn6KmoIMLA/bbHxuUSF/AmVKdXq5EvtqGcgMRd6BjqcldM2xk+fdbGrlK8m0wa 2DQj+8mdTJiPkAjH75Vu7LF+pzRlY9PRafjxcIHA= From: "cvs-commit at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/95118] [10 Regression] gcc-10 and master -O3 -fopt-info-vec causes gcc to hang Date: Tue, 23 Jun 2020 11:06:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 10.1.0 X-Bugzilla-Keywords: compile-time-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: cvs-commit at gcc dot gnu.org X-Bugzilla-Status: ASSIGNED X-Bugzilla-Resolution: X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: rguenth at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.2 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Jun 2020 11:06:32 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D95118 --- Comment #8 from CVS Commits --- The releases/gcc-10 branch has been updated by Richard Biener : https://gcc.gnu.org/g:fe19d514ae915163b49fa344703ecfa1778a44d8 commit r10-8349-gfe19d514ae915163b49fa344703ecfa1778a44d8 Author: Richard Biener 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 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.=