From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D9D813858C5E; Fri, 15 Mar 2024 11:28:15 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D9D813858C5E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1710502095; bh=EmkKBRAVtpdbLtB+YDOy2CKDJtWJ3f80LowiBU8Zp5c=; h=From:To:Subject:Date:In-Reply-To:References:From; b=exF1S4yw7UT3UQe77max8EsJm5efOZg0v1PTyllMuKP2lVrMVfxeXlaTnXUtlCeP3 9512gzCZ8ntNBa8h/uB2li2UUzKlzgnv1fW/aCwYY1vsef4HKKUq9+BFnQcRUZxBu4 zJGGxL8tq1Tq8BQCAu7rgVXA+Q2qGcia/htu0Tys= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/108843] timeout with -g -O3 since r9-2635-g78ea9abc2018243a Date: Fri, 15 Mar 2024 11:28:14 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: compile-time-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108843 --- Comment #5 from David Binderman --- Created attachment 57711 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D57711&action=3Dedit C source code Another test case. foundBugs $ (ulimit -t 60; time ~/gcc/results/bin/gcc -c -w -O3 bug1023.c) real 0m0.456s user 0m0.435s sys 0m0.019s foundBugs $ (ulimit -t 60; time ~/gcc/results/bin/gcc -c -w -g -O3 bug1023.= c) gcc: fatal error: Killed signal terminated program cc1 compilation terminated. real 1m0.363s user 0m59.555s sys 0m0.524s foundBugs $ (ulimit -t 60; time ~/gcc/results/bin/gcc -c -w -g -O3 -fno-var-tracking bug1023.c) real 0m6.269s user 0m5.620s sys 0m0.502s foundBugs $=