From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 845063858C2C; Thu, 10 Feb 2022 13:09:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 845063858C2C From: "hjl.tools at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug testsuite/104481] gcc.target/i386/pr35513-8.c and g++.target/i386/pr35513-[12].C testsuire failures Date: Thu, 10 Feb 2022 13:09:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: testsuite X-Bugzilla-Version: 12.0 X-Bugzilla-Keywords: testsuite-fail X-Bugzilla-Severity: normal X-Bugzilla-Who: hjl.tools at gmail dot com X-Bugzilla-Status: NEW 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: 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Feb 2022 13:09:50 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D104481 --- Comment #8 from H.J. Lu --- (In reply to Uro=C5=A1 Bizjak from comment #0) > rab0b5fbfe90168d2e470aefb19e0cf31526290bc caused: >=20 > UNRESOLVED: gcc.target/i386/pr35513-8.c scan-assembler .long[ \\t]+0xb000= 8000 > UNRESOLVED: gcc.target/i386/pr35513-8.c scan-assembler .section[ > \\t]+.note.gnu.property, This fixed it: diff --git a/gcc/testsuite/gcc.target/i386/pr35513-8.c b/gcc/testsuite/gcc.target/i386/pr35513-8.c index 7ba67de2156..d51f7efb353 100644 --- a/gcc/testsuite/gcc.target/i386/pr35513-8.c +++ b/gcc/testsuite/gcc.target/i386/pr35513-8.c @@ -1,4 +1,4 @@ -/* { dg-do assemble { target { *-*-linux* && { ! ia32 } } } } */ +/* { dg-do compile { target { *-*-linux* && { ! ia32 } } } } */ /* { dg-require-effective-target maybe_x32 } */ /* { dg-options "-mx32 -O2 -fno-pic -fexceptions -fasynchronous-unwind-tab= les -mno-direct-extern-access" } */ > and >=20 > FAIL: g++.target/i386/pr35513-1.C -std=3Dgnu++14 (test for excess errors) > FAIL: g++.target/i386/pr35513-1.C -std=3Dgnu++17 (test for excess errors) > FAIL: g++.target/i386/pr35513-1.C -std=3Dgnu++20 (test for excess errors) > FAIL: g++.target/i386/pr35513-1.C -std=3Dgnu++98 (test for excess errors) > FAIL: g++.target/i386/pr35513-2.C -std=3Dgnu++14 (test for excess errors) > FAIL: g++.target/i386/pr35513-2.C -std=3Dgnu++17 (test for excess errors) > FAIL: g++.target/i386/pr35513-2.C -std=3Dgnu++20 (test for excess errors) > FAIL: g++.target/i386/pr35513-2.C -std=3Dgnu++98 (test for excess errors) I will update them.=