From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 79FBB3858C83; Sat, 18 Feb 2023 09:11:38 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 79FBB3858C83 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1676711498; bh=BK/3L7pVcUK4C/yxnR0T2rvarrSIJmMooIKgIsjnxiE=; h=From:To:Subject:Date:From; b=iPnpQe3golLUOkxEYPMj9wBQg9MkK9Nh9g6mqPu6pcZd4Jac6dE0SPrIKC7FG5whf ip3xTGfLjTO9h6iFJtOPCM761UkivckCL01eFfjAHKnGbgrMbTs+pEuSe4AChGtBr0 LkuSM0hGGRLihjgVnaJzTYxi6u/pC5ByqtWd/eRs= From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug debug/108843] New: timeout with -g -O3 ? Date: Sat, 18 Feb 2023 09:11:37 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: debug X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED 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: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone attachments.created Message-ID: 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 Bug ID: 108843 Summary: timeout with -g -O3 ? Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: debug Assignee: unassigned at gcc dot gnu.org Reporter: dcb314 at hotmail dot com Target Milestone: --- Created attachment 54485 --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=3D54485&action=3Dedit C source code The attached code does this: $ (ulimit -t 60; time /home/dcb36/gcc/results/bin/gcc -c -w -O3 bug886.c) real 0m0.637s user 0m0.608s sys 0m0.018s $ (ulimit -t 60; time /home/dcb36/gcc/results/bin/gcc -c -w -g -O3 bug886.c) gcc: fatal error: Killed signal terminated program cc1 compilation terminated. real 1m0.732s user 0m59.485s sys 0m0.629s $=