diff options
author | Jakub Jelinek <jakub@redhat.com> | 2021-04-15 14:08:03 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2021-04-15 14:08:03 +0200 |
commit | 4d1fa72894e3fbc5f331d2e8984e990307396124 (patch) | |
tree | c6bcb6648624fdf5eb2dae1092fa31d0d2938793 /gcc | |
parent | ddcf111d0554c0cd4f80c1ce033af0304f8ff024 (diff) | |
download | gcc-4d1fa72894e3fbc5f331d2e8984e990307396124.zip gcc-4d1fa72894e3fbc5f331d2e8984e990307396124.tar.gz gcc-4d1fa72894e3fbc5f331d2e8984e990307396124.tar.bz2 |
testsuite: enable pr86058.c also on i?86-*-* [PR100073]
The test also works with -m32 or -mx32 the same as it does for -m64,
therefore it should be enabled for i?86-*-* x86_64-*-* targets,
x86_64-*-* alone is never right.
2021-04-15 Jakub Jelinek <jakub@redhat.com>
PR testsuite/100073
* gcc.dg/pr86058.c: Enable also on i?86-*-*.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/gcc.dg/pr86058.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/testsuite/gcc.dg/pr86058.c b/gcc/testsuite/gcc.dg/pr86058.c index e39b720..89628c9 100644 --- a/gcc/testsuite/gcc.dg/pr86058.c +++ b/gcc/testsuite/gcc.dg/pr86058.c @@ -1,7 +1,7 @@ /* PR middle-end/86058 - TARGET_MEM_REF causing incorrect message for -Wmaybe-uninitialized warning - The test fails on a number of non-x86_64 targets due to pr100073. - { dg-do compile { target x86_64-*-* } } + The test fails on a number of non-x86 targets due to pr100073. + { dg-do compile { target i?86-*-* x86_64-*-* } } { dg-options "-O2 -Wuninitialized -Wmaybe-uninitialized" } */ extern void foo (int *); |