From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 9915E3858C2D; Thu, 29 Jun 2023 17:29:14 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 9915E3858C2D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1688059754; bh=NcDYk0kVLuYKk198sc+WyI8zCl6oxC7ydhA6KBCTybA=; h=From:To:Subject:Date:In-Reply-To:References:From; b=TLa+1NDA4TO8Zdzjc1Q0/wEzntaC2va9fUVQxQ8bPP3Mmpy8oaPQs7p2nOc9lr3Kq tt+46olcPp5rYKcDfg3FEuPs81tE6nFrzgmq7+bAdgLBevsyTF00c15buY21ANCjQq 3TUIbBbDGiJKMdr3SjG7JfJWfuAXw8qUj6znpSgs= From: "anlauf at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/110311] [14 Regression] regression in tree-optimizer Date: Thu, 29 Jun 2023 17:29:13 +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: 14.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: anlauf at gcc dot gnu.org 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: 14.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=3D110311 --- Comment #25 from anlauf at gcc dot gnu.org --- (In reply to J=C3=BCrgen Reuter from comment #24) > Here is a first reproducer without the need for OCaml, unfortunately a bit > too big to be uploaded, here is the link: > https://www.desy.de/~reuter/downloads/repro001.tar.xz > the tarball contains Fortran files that compile to two binaries, ./whizard > and ./whizard_check. Unfortunately, there is no main.f90, which is needed to build whizard. The Makefile needs to be modified to take into account that pythia.f needs preprocessing, e.g.: %.o: %.f $(FC) $(FCFLAGS) -c $< -cpp Furthermore, one needs to compile serially; parallel make does not seem to be supported. Can you please provide the missing file?=