diff mbox series

[committed] testsuite: Add -Wno-psabi to pr113126.c test

Message ID ZgKjYWr2JM4KDvDl@tucnak
State New
Headers show
Series [committed] testsuite: Add -Wno-psabi to pr113126.c test | expand

Commit Message

Jakub Jelinek March 26, 2024, 10:28 a.m. UTC
Hi!

I've missed
FAIL: gcc.dg/torture/pr113126.c   -O0  (test for excess errors)
etc. regressions on i686-linux since January.  The problem is obvious
Excess errors:
.../gcc/testsuite/gcc.dg/torture/pr113126.c:11:1: warning: MMX vector return without MMX enabled changes the ABI [-Wpsabi]
and I've added -Wno-psabi to dg-additional-options to fix that up.

Tested on x86_64-linux with
make check-gcc RUNTESTFLAGS='--target_board=unix\{-m32/-mno-sse/-mno-mmx,-m32,-m64\} dg-torture.exp=pr113126.c'
and committed to trunk as obvious.

2024-03-26  Jakub Jelinek  <jakub@redhat.com>

	* gcc.dg/tort-re/pr113126.c: Add -Wno-psabi as dg-additional-options.


	Jakub
diff mbox series

Patch

--- gcc/testsuite/gcc.dg/torture/pr113126.c.jj	2024-01-12 10:07:58.328849767 +0100
+++ gcc/testsuite/gcc.dg/torture/pr113126.c	2024-03-26 11:24:04.055734511 +0100
@@ -1,4 +1,5 @@ 
 /* { dg-do compile } */
+/* { dg-additional-options "-Wno-psabi" } */
 
 typedef float __attribute__((__vector_size__ (8))) F;
 typedef double __attribute__((__vector_size__ (16))) G;