]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
testsuite/gcc.dg/uninit-pred-9_b.c:23: Un-xfail for MMIX
authorHans-Peter Nilsson <hp@axis.com>
Sat, 25 Nov 2023 01:19:01 +0000 (02:19 +0100)
committerHans-Peter Nilsson <hp@bitrange.com>
Sun, 26 Nov 2023 23:28:40 +0000 (00:28 +0100)
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.

gcc/testsuite/gcc.dg/uninit-pred-9_b.c

index 3c83d505ec0f6dd7b5e5b683bd6852de78de5b09..3e544f3f1be4e359f90192b0a18f2a4b662ede41 100644 (file)
@@ -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;
 }