diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2023-11-25 02:19:01 +0100 |
---|---|---|
committer | Hans-Peter Nilsson <hp@bitrange.com> | 2023-11-27 00:28:40 +0100 |
commit | b2f42d0cdf0c7eed9c4c55ccdd628836414136b1 (patch) | |
tree | ce78b3f2f931cd4dcc67faea8af0c8b5190189b4 | |
parent | c9d029ba2ceb435e31492c1f3f0fd3edf0e386be (diff) | |
download | gcc-b2f42d0cdf0c7eed9c4c55ccdd628836414136b1.zip gcc-b2f42d0cdf0c7eed9c4c55ccdd628836414136b1.tar.gz gcc-b2f42d0cdf0c7eed9c4c55ccdd628836414136b1.tar.bz2 |
testsuite/gcc.dg/uninit-pred-9_b.c:23: Un-xfail for MMIX
In a recent all-target test-round investigating XPASSes for
this file, I noticed this line XPASSing for MMIX. From the
commit history it's obvious it was left out from related
target-xfail tweaks, now the last target xfailing a bogus
warning for this line.
* gcc.dg/uninit-pred-9_b.c: Remove xfail for MMIX from line 23.
-rw-r--r-- | gcc/testsuite/gcc.dg/uninit-pred-9_b.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gcc.dg/uninit-pred-9_b.c b/gcc/testsuite/gcc.dg/uninit-pred-9_b.c index 3c83d50..3e544f3 100644 --- a/gcc/testsuite/gcc.dg/uninit-pred-9_b.c +++ b/gcc/testsuite/gcc.dg/uninit-pred-9_b.c @@ -20,7 +20,7 @@ int foo (int n, int l, int m, int r) blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail *-*-* } } */ if ( (n <= 8) && (m < 99) && (r < 19) ) - blah(v); /* { dg-bogus "uninitialized" "pr101674" { xfail mmix-*-* } } */ + blah(v); /* { dg-bogus "uninitialized" "pr101674" } */ return 0; } |