From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 165023858C5F; Thu, 9 Feb 2023 20:07:02 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 165023858C5F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675973222; bh=g/I1tibd3Af5/oGrEqpzwIxW45YPEDP1TnzW3gLYye8=; h=From:To:Subject:Date:In-Reply-To:References:From; b=lDt7JFKk+jbPPiecvXpzRIxlOHwyOSuWOc2yNs3scfdiC6Zs1fMGYUqjsJ7Q4+g4S mvdvKSfaGddRbgN1Ehg23EjN6lcgZ67v8e6W3iV3ErvP1xlvP0FlxRtyXHAczLDpTh KSw1Sflo36CkwmPS9PMKWGgvaaRNkeHTJ+V6yPHA= From: "stefansf at linux dot ibm.com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/108687] [13 Regression] Non-termination since r13-5630-g881bf8de9b0 Date: Thu, 09 Feb 2023 20:07:01 +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: 13.0 X-Bugzilla-Keywords: compile-time-hog X-Bugzilla-Severity: normal X-Bugzilla-Who: stefansf at linux dot ibm.com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 13.0 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 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D108687 --- Comment #8 from Stefan Schulze Frielinghaus --- I came up with a cross compiler where I can reproduce it: FROM fedora:37 RUN dnf -y upgrade \ && dnf -y install 'dnf-command(builddep)' \ && dnf -y builddep gcc \ && dnf -y install binutils-s390x-linux-gnu git \ && dnf clean metadata RUN git clone --depth 1 https://gcc.gnu.org/git/gcc.git \ && mkdir /build \ && cd /build \ && /gcc/configure --target=3Ds390x-linux-gnu \ --enable-languages=3Dc \ --disable-nls \ --without-headers \ --disable-multilib \ && make -j$(nproc) all-gcc \ && make install-gcc Running inside the container $ /usr/local/bin/s390x-linux-gnu-gcc -O3 -march=3Dz13 -c t.c does not terminate for me. Hope this makes debugging easier. If you need anything else just let me know.=