diff options
author | Jakub Jelinek <jakub@redhat.com> | 2024-03-26 11:25:15 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2024-03-26 11:25:15 +0100 |
commit | 4549b0f67d52b4f042ab89a036249545c3938b45 (patch) | |
tree | 5f9cc097518b0d1e3bf9e1de4bbd640e404a0907 | |
parent | c4f2c84e8fa369856aee76679590eb613724bfb0 (diff) | |
download | gcc-4549b0f67d52b4f042ab89a036249545c3938b45.zip gcc-4549b0f67d52b4f042ab89a036249545c3938b45.tar.gz gcc-4549b0f67d52b4f042ab89a036249545c3938b45.tar.bz2 |
testsuite: Add -Wno-psabi to pr113126.c test
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.
2024-03-26 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/torture/pr113126.c: Add -Wno-psabi as dg-additional-options.
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/pr113126.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/torture/pr113126.c b/gcc/testsuite/gcc.dg/torture/pr113126.c index 4aa38e0..ffe2979 100644 --- a/gcc/testsuite/gcc.dg/torture/pr113126.c +++ b/gcc/testsuite/gcc.dg/torture/pr113126.c @@ -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; |