diff options
author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2012-04-05 12:11:50 +0000 |
---|---|---|
committer | William Schmidt <wschmidt@gcc.gnu.org> | 2012-04-05 12:11:50 +0000 |
commit | 1bb940da3c96a2f6eb4ff2b3ca2077559e5481fa (patch) | |
tree | 79c47d074ad5ef30b51e081fc846b27ea14ae47a /gcc | |
parent | 14f60a5a37d7a958382e6a9ffc39f90957ad1dbc (diff) | |
download | gcc-1bb940da3c96a2f6eb4ff2b3ca2077559e5481fa.zip gcc-1bb940da3c96a2f6eb4ff2b3ca2077559e5481fa.tar.gz gcc-1bb940da3c96a2f6eb4ff2b3ca2077559e5481fa.tar.bz2 |
re PR testsuite/52614 (Test failures in gcc.dg/vect: vectorizing unaligned access)
gcc/testsuite:
2012-04-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
Dominique D'Humieures <dominiq@lps.ens.fr>
PR testsuite/52614
* gcc.dg/vect/vect.exp: Use -fno-common on all targets.
* gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp: Likewise.
Co-Authored-By: Dominique d'Humieres <dominiq@lps.ens.fr>
From-SVN: r186163
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp | 2 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/vect/vect.exp | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 92c18df..c4e4ecb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2012-04-05 Bill Schmidt <wschmidt@linux.vnet.ibm.com> + Dominique D'Humieures <dominiq@lps.ens.fr> + + PR testsuite/52614 + * gcc.dg/vect/vect.exp: Use -fno-common on all targets. + * gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp: Likewise. + 2012-04-04 Jason Merrill <jason@redhat.com> PR c++/52845 diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp index 280b556..e19120f 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp +++ b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/ppc-costmodel-vect.exp @@ -34,7 +34,7 @@ if ![is-effective-target powerpc_altivec_ok] { set DEFAULT_VECTCFLAGS "" # These flags are used for all targets. -lappend DEFAULT_VECTCFLAGS "-O2" "-ftree-vectorize" "-fvect-cost-model" +lappend DEFAULT_VECTCFLAGS "-O2" "-ftree-vectorize" "-fvect-cost-model" "-fno-common" # If the target system supports vector instructions, the default action # for a test is 'run', otherwise it's 'compile'. Save current default. diff --git a/gcc/testsuite/gcc.dg/vect/vect.exp b/gcc/testsuite/gcc.dg/vect/vect.exp index b6d4a33..4265163 100644 --- a/gcc/testsuite/gcc.dg/vect/vect.exp +++ b/gcc/testsuite/gcc.dg/vect/vect.exp @@ -40,7 +40,7 @@ if ![check_vect_support_and_set_flags] { } # These flags are used for all targets. -lappend DEFAULT_VECTCFLAGS "-ftree-vectorize" "-fno-vect-cost-model" +lappend DEFAULT_VECTCFLAGS "-ftree-vectorize" "-fno-vect-cost-model" "-fno-common" # Initialize `dg'. dg-init |