diff options
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/pr21817-1.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ecc5b67..788ca8f 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2005-06-29 Steve Ellcey <sje@cup.hp.com> + PR testsuite/21969 + * gcc.dg/torture/pr21817.c: Use -fno-common for hppa*-*-* targets. + +2005-06-29 Steve Ellcey <sje@cup.hp.com> + PR middle-end/21969 * gcc.dg/vect/pr21969.c: New test. diff --git a/gcc/testsuite/gcc.dg/torture/pr21817-1.c b/gcc/testsuite/gcc.dg/torture/pr21817-1.c index 524c798..d90d323 100644 --- a/gcc/testsuite/gcc.dg/torture/pr21817-1.c +++ b/gcc/testsuite/gcc.dg/torture/pr21817-1.c @@ -1,4 +1,8 @@ +/* hppa*-*-hpux* needs -fno-common so that value can be given a 16 + byte alignment. */ + /* { dg-do compile } */ +/* { dg-options "-fno-common" { target { hppa*-*-hpux* } } } */ typedef float v4sf __attribute__((vector_size(16))); v4sf value; |