diff mbox series

testsuite: fixup pr97521.c and pr96713.c on i686-*

Message ID 20220317094108.4127872-1-poulhies@adacore.com
State New
Headers show
Series testsuite: fixup pr97521.c and pr96713.c on i686-* | expand

Commit Message

Marc Poulhiès March 17, 2022, 9:41 a.m. UTC
On targets that do not have MXX/SSE enabled by default, pr97521
and pr96713 fail because they emit warnings:

pr97521.c:12:1: warning: MMX vector return without MMX enabled
                changes the ABI [-Wpsabi]
pr97521.c:11:1: note: the ABI for passing parameters with
                16-byte alignment has changed in GCC 4.6
pr97521.c:11:1: warning: SSE vector argument without SSE enabled
                changes the ABI [-Wpsabi]

Add -Wno-abi to dg-options.

Ok for master?

gcc/testsuite/ChangeLog:
        * gcc.target/i386/pr97521.c: Add -Wno-psabi to dg-options.
        * gcc.dg/analyzer/pr96713.c: Likewise.

---
 gcc/testsuite/gcc.dg/analyzer/pr96713.c | 1 +
 gcc/testsuite/gcc.target/i386/pr97521.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

Comments

Marc Poulhiès March 28, 2022, 2:45 p.m. UTC | #1
Marc Poulhiès <poulhies@adacore.com> writes:

> On targets that do not have MXX/SSE enabled by default, pr97521
> and pr96713 fail because they emit warnings:
>
> pr97521.c:12:1: warning: MMX vector return without MMX enabled
>                 changes the ABI [-Wpsabi]
> pr97521.c:11:1: note: the ABI for passing parameters with
>                 16-byte alignment has changed in GCC 4.6
> pr97521.c:11:1: warning: SSE vector argument without SSE enabled
>                 changes the ABI [-Wpsabi]
>
> Add -Wno-abi to dg-options.
>
> Ok for master?

ping ?
Richard Biener March 29, 2022, 7:09 a.m. UTC | #2
On Mon, Mar 28, 2022 at 4:46 PM Marc Poulhiès via Gcc-patches
<gcc-patches@gcc.gnu.org> wrote:
>
> Marc Poulhiès <poulhies@adacore.com> writes:
>
> > On targets that do not have MXX/SSE enabled by default, pr97521
> > and pr96713 fail because they emit warnings:
> >
> > pr97521.c:12:1: warning: MMX vector return without MMX enabled
> >                 changes the ABI [-Wpsabi]
> > pr97521.c:11:1: note: the ABI for passing parameters with
> >                 16-byte alignment has changed in GCC 4.6
> > pr97521.c:11:1: warning: SSE vector argument without SSE enabled
> >                 changes the ABI [-Wpsabi]
> >
> > Add -Wno-abi to dg-options.
> >
> > Ok for master?
>
> ping ?

OK
diff mbox series

Patch

diff --git a/gcc/testsuite/gcc.dg/analyzer/pr96713.c b/gcc/testsuite/gcc.dg/analyzer/pr96713.c
index fe9cafd73f1..12170bd4c64 100644
--- a/gcc/testsuite/gcc.dg/analyzer/pr96713.c
+++ b/gcc/testsuite/gcc.dg/analyzer/pr96713.c
@@ -1,3 +1,4 @@ 
+/* { dg-options "-Wno-psabi" } */
 typedef int __attribute__ ((vector_size (8))) V;
 
 void
diff --git a/gcc/testsuite/gcc.target/i386/pr97521.c b/gcc/testsuite/gcc.target/i386/pr97521.c
index 804ffd61e13..5970bcff383 100644
--- a/gcc/testsuite/gcc.target/i386/pr97521.c
+++ b/gcc/testsuite/gcc.target/i386/pr97521.c
@@ -1,5 +1,5 @@ 
 /* { dg-do run } */
-/* { dg-options "-O -mno-sse2" } */
+/* { dg-options "-O -mno-sse2 -Wno-psabi" } */
 
 typedef unsigned char __attribute__ ((__vector_size__ (8))) V;
 typedef unsigned long long __attribute__ ((__vector_size__ (16))) W;