From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id 6F06A3857C7E; Thu, 20 Jan 2022 10:33:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6F06A3857C7E MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-6757] testsuite: Add -Wno-psabi to pr47639.C testcase X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 8bc700f4c3fbe405413db02281ef2918bfa831fc X-Git-Newrev: 7b78dee64def7e251a1d0678613c8aaabe7b176c Message-Id: <20220120103351.6F06A3857C7E@sourceware.org> Date: Thu, 20 Jan 2022 10:33:51 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2022 10:33:51 -0000 https://gcc.gnu.org/g:7b78dee64def7e251a1d0678613c8aaabe7b176c commit r12-6757-g7b78dee64def7e251a1d0678613c8aaabe7b176c Author: Jakub Jelinek Date: Thu Jan 20 11:32:29 2022 +0100 testsuite: Add -Wno-psabi to pr47639.C testcase This patch fixes gcc/testsuite/g++.dg/opt/pr47639.C:6:24: warning: MMX vector return without MMX enabled changes the ABI [-Wpsabi] gcc/testsuite/g++.dg/opt/pr47639.C:6:5: warning: MMX vector argument without MMX enabled changes the ABI [-Wpsabi] FAILs on i686-linux. 2022-01-20 Jakub Jelinek * g++.dg/opt/pr47639.C: Add -Wno-psabi to dg-options. Diff: --- gcc/testsuite/g++.dg/opt/pr47639.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/testsuite/g++.dg/opt/pr47639.C b/gcc/testsuite/g++.dg/opt/pr47639.C index 6ee8bb7dee4..429ad258ec6 100644 --- a/gcc/testsuite/g++.dg/opt/pr47639.C +++ b/gcc/testsuite/g++.dg/opt/pr47639.C @@ -1,5 +1,5 @@ // { dg-do compile } -// { dg-options "-fnon-call-exceptions" } +// { dg-options "-fnon-call-exceptions -Wno-psabi" } typedef int __attribute__ ((vector_size (8))) vec;