From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id C75A83858CDA; Fri, 24 Mar 2023 13:10:32 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org C75A83858CDA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679663432; bh=5ReS5nZofktNf5yNhx+IT922cpCFzWhrWEcXsaboWEc=; h=From:To:Subject:Date:In-Reply-To:References:From; b=eTUpYET8TgIdE6zOwI4xRTa49aZdYeVBIr4uOJikO3G4KPIMeuyei4oQgsP0yi1Gq 63U7aIoSTeBhYEFhw6pvKN/rmjnqtxx89NT53UPiC5Pd+9q16CNxVxGE5zBt501p1v 2EadHvHH8h/C5+ozuHHYGjffr69eItikjD1ZW49g= From: "vmakarov at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug target/109137] [12 regression] Compiling ffmpeg with -m32 on x86_64-pc-linux-gnu hangs on libavcodec/h264_cabac.c since r12-9086-g489c81db7d4f75 Date: Fri, 24 Mar 2023 13:10:32 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: target X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: compile-time-hog, ice-on-invalid-code, inline-asm X-Bugzilla-Severity: normal X-Bugzilla-Who: vmakarov at gcc dot gnu.org X-Bugzilla-Status: REOPENED X-Bugzilla-Resolution: X-Bugzilla-Priority: P1 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 12.3 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=3D109137 --- Comment #20 from Vladimir Makarov --- (In reply to CVS Commits from comment #19) > The master branch has been updated by Jakub Jelinek : >=20 > https://gcc.gnu.org/g:0d9e52675c009139a14182d92ddb446ba2feabce >=20 > commit r13-6846-g0d9e52675c009139a14182d92ddb446ba2feabce > Author: Jakub Jelinek > Date: Fri Mar 24 09:42:18 2023 +0100 >=20 > testsuite: Fix up gcc.target/i386/pr109137.c testcase [PR109137] >=20=20=20=20=20 > The testcase has a couple of small problems: > 1) had -m32 in dg-options, that should never be done, instead the test > should be guarded on ia32 > 2) adds -fPIC unconditionally (that should be guarded on fpic effecti= ve > target) > 3) using #include for a RA test seems unnecessary, > __builtin_memset > handles it without the header Thank you for the test correction, Jakub.=