diff options
author | John David Anglin <danglin@gcc.gnu.org> | 2018-01-21 18:35:49 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2018-01-21 18:35:49 +0000 |
commit | bca5a9a103aadc02583e4c033b6e8016640599ed (patch) | |
tree | 8825503022dfc94dede76e891a90d2e683163058 /gcc | |
parent | e55b72cfb384105c6be87051c1182c05c481cd87 (diff) | |
download | gcc-bca5a9a103aadc02583e4c033b6e8016640599ed.zip gcc-bca5a9a103aadc02583e4c033b6e8016640599ed.tar.gz gcc-bca5a9a103aadc02583e4c033b6e8016640599ed.tar.bz2 |
pr83621.c: Add -fno-common additional option on hppa*-&-hpux*.
* gcc.dg/pr83621.c: Add -fno-common additional option on hppa*-&-hpux*.
* gcc.dg/pr83623.c: Likewise.
* gcc.dg/pr83666.c: Likewise.
From-SVN: r256935
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr83621.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr83623.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/pr83666.c | 1 |
4 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7bde92d..80098fc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2018-01-21 John David Anglin <danglin@gcc.gnu.org> + + * gcc.dg/pr83621.c: Add -fno-common additional option on hppa*-&-hpux*. + * gcc.dg/pr83623.c: Likewise. + * gcc.dg/pr83666.c: Likewise. + 2018-01-21 Bill Schmidt <wschmidt@linux.vnet.ibm.com> David Edelsohn <dje.gcc@gmail.com> diff --git a/gcc/testsuite/gcc.dg/pr83621.c b/gcc/testsuite/gcc.dg/pr83621.c index a27a0a8..668a8db 100644 --- a/gcc/testsuite/gcc.dg/pr83621.c +++ b/gcc/testsuite/gcc.dg/pr83621.c @@ -1,6 +1,7 @@ /* PR debug/83621 */ /* { dg-do compile } */ /* { dg-options "-O -g" } */ +/* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */ typedef int __attribute__ ((__vector_size__ (64))) V; V v; diff --git a/gcc/testsuite/gcc.dg/pr83623.c b/gcc/testsuite/gcc.dg/pr83623.c index 5d62c04..ae12448 100644 --- a/gcc/testsuite/gcc.dg/pr83623.c +++ b/gcc/testsuite/gcc.dg/pr83623.c @@ -2,6 +2,7 @@ /* { dg-do compile } */ /* { dg-options "-O2" } */ /* { dg-additional-options "-mmovbe" { target i?86-*-* x86_64-*-* } } */ +/* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */ unsigned short __attribute__ ((__vector_size__ (16))) x; diff --git a/gcc/testsuite/gcc.dg/pr83666.c b/gcc/testsuite/gcc.dg/pr83666.c index f12f13d..7bd1ed3 100644 --- a/gcc/testsuite/gcc.dg/pr83666.c +++ b/gcc/testsuite/gcc.dg/pr83666.c @@ -1,6 +1,7 @@ /* PR debug/83666 */ /* { dg-do compile } */ /* { dg-options "-O2 -g --param=sccvn-max-scc-size=10 -Wno-psabi" } */ +/* { dg-additional-options "-fno-common" { target hppa*-*-hpux* } } */ typedef int __attribute__ ((vector_size (64))) V; |