diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2012-03-10 22:49:51 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2012-03-10 22:49:51 +0000 |
commit | 4a672a26e12cea9d1b34470039bde522f50357df (patch) | |
tree | 74caa6f1261c73abed9654cbd3237dbc46e8ba54 | |
parent | 6709ae7980062d48bf19b9a31b48c3f987c2da89 (diff) | |
download | gcc-4a672a26e12cea9d1b34470039bde522f50357df.zip gcc-4a672a26e12cea9d1b34470039bde522f50357df.tar.gz gcc-4a672a26e12cea9d1b34470039bde522f50357df.tar.bz2 |
re PR middle-end/52450 (FAIL: gcc.dg/torture/pr52402.c at -O1 and above)
PR target/52450
* gcc.dg/torture/pr52402.c: Skip execution on 32-bit hppa*-*-hpux*.
From-SVN: r185184
-rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/pr52402.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 33d2296..0234217 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2012-03-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + PR target/52450 + * gcc.dg/torture/pr52402.c: Skip execution on 32-bit hppa*-*-hpux*. + * gcc.dg/torture/pr52407.c: Add -fno-common option on hppa*-*-hpux*. 2012-03-09 Andrew Pinski <apinski@cavium.com> diff --git a/gcc/testsuite/gcc.dg/torture/pr52402.c b/gcc/testsuite/gcc.dg/torture/pr52402.c index ba7c5ae..ad54d2a 100644 --- a/gcc/testsuite/gcc.dg/torture/pr52402.c +++ b/gcc/testsuite/gcc.dg/torture/pr52402.c @@ -1,6 +1,7 @@ /* { dg-do run } */ /* { dg-options "-w -Wno-psabi" } */ /* { dg-require-effective-target int32plus } */ +/* { dg-xfail-run-if "pr52450" { { hppa*-*-hpux* } && { ! lp64 } } } */ typedef int v4si __attribute__((vector_size(16))); struct T { v4si i[2]; int j; } __attribute__((packed)); |