diff options
author | Alexandre Oliva <oliva@adacore.com> | 2023-05-24 03:07:58 -0300 |
---|---|---|
committer | Alexandre Oliva <oliva@gnu.org> | 2023-05-24 03:08:41 -0300 |
commit | d03da468b263f46e537a8c785ba8e6d4ce41608c (patch) | |
tree | 74552dcac65af45077734211b2487e2333fb060b | |
parent | b4c2f8c61aeb98d6c1c04c4f22b4c131cbd22245 (diff) | |
download | gcc-d03da468b263f46e537a8c785ba8e6d4ce41608c.zip gcc-d03da468b263f46e537a8c785ba8e6d4ce41608c.tar.gz gcc-d03da468b263f46e537a8c785ba8e6d4ce41608c.tar.bz2 |
[testsuite] [ppc] xfail uninit-pred-9_b bogus warn on ppc32 too
The bogus warning is present on 32-bit ppc-vx7r2 too, so drop the 64
from the powerpc xfail triplet.
for gcc/testsuite/ChangeLog
* gcc.dg/uninit-pred-9_b.c: Xfail bogus warning on 32-bit ppc
as well.
-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 c8f427b..0f508fa 100644 --- a/gcc/testsuite/gcc.dg/uninit-pred-9_b.c +++ b/gcc/testsuite/gcc.dg/uninit-pred-9_b.c @@ -17,7 +17,7 @@ int foo (int n, int l, int m, int r) if (l > 100) if ( (n <= 9) && (m < 100) && (r < 19) ) - blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail powerpc64*-*-* cris-*-* riscv*-*-* } } */ + blah(v); /* { dg-bogus "uninitialized" "bogus warning" { xfail powerpc*-*-* cris-*-* riscv*-*-* } } */ if ( (n <= 8) && (m < 99) && (r < 19) ) blah(v); /* { dg-bogus "uninitialized" "pr101674" { xfail mmix-*-* } } */ |