re PR target/70012 (test case gcc.dg/vect/costmodel/ppc/costmodel-vect-33.c fails)

2017-02-01  Bill Schmidt  <wschmidt@linux.vnet.ibm.com>

	PR target/70012
	* gcc.dg/vect/costmodel/ppc/costmodel-vect-33.c: Adjust test
	conditions.

From-SVN: r245108
This commit is contained in:
Bill Schmidt 2017-02-01 22:11:57 +00:00 committed by William Schmidt
parent 60ab85958c
commit e26b502d9b
2 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,9 @@
2017-02-01 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
PR target/70012
* gcc.dg/vect/costmodel/ppc/costmodel-vect-33.c: Adjust test
conditions.
2017-02-01 Jakub Jelinek <jakub@redhat.com>
PR testsuite/79324

View File

@ -36,7 +36,12 @@ int main (void)
}
/* Peeling to align the store is used. Overhead of peeling is too high. */
/* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" { target vector_alignment_reachable } } } */
/* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" { target { ! natural_alignment_32 } } } } */
/* Versioning to align the store is used. Overhead of versioning is not too high. */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target {! vector_alignment_reachable} } } } */
/* Vectorization occurs, either because overhead of versioning is not
too high, or because the hardware supports efficient unaligned accesses. */
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { natural_alignment_32 } } } } */
/* Versioning to align the store is used. Overhead of versioning is not
too high. */
/* { dg-final { scan-tree-dump-times "loop versioned for vectorization to enhance alignment" 1 "vect" { target { natural_alignment_32 && { ! vect_hw_misalign } } } } } */