From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 3379E385084B; Fri, 24 Mar 2023 08:45:12 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 3379E385084B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1679647512; bh=tsAXxZ46Fqm/nnyKQafI9n0Uv/I7VlP1mBA+ONqeGPw=; h=From:To:Subject:Date:In-Reply-To:References:From; b=x3Pob4+L8M3PWeTtVssax0xBMkx4PxRmMLLKk2D8Kdqc4BGR4oteg3D2z4TqYQjWt t3Z/2G3Ds8QZ8hoWV18SxlIV7q8gSis3hvPjOvnjzS0y4s4dsqkZcrGKfzPwlcvyha XylHqRaO4oWotXVCKm7UjXwR9v6Zc/h7/3d0imfE= From: "cvs-commit 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 08:45:08 +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: cvs-commit 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 #19 from CVS Commits --- The master branch has been updated by Jakub Jelinek : https://gcc.gnu.org/g:0d9e52675c009139a14182d92ddb446ba2feabce commit r13-6846-g0d9e52675c009139a14182d92ddb446ba2feabce Author: Jakub Jelinek Date: Fri Mar 24 09:42:18 2023 +0100 testsuite: Fix up gcc.target/i386/pr109137.c testcase [PR109137] 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 effective target) 3) using #include for a RA test seems unnecessary, __builtin_memset handles it without the header 2023-03-24 Jakub Jelinek PR target/109137 * gcc.target/i386/pr109137.c: Remove -m32 from dg-options, inst= ead require ia32 effective target. Only add -fPIC for fpic effecti= ve target. Remove #include , use __builtin_memset inste= ad of memset.=