From 34722c3669ee87bd6754d4346e12e822641b0cd7 Mon Sep 17 00:00:00 2001 From: Bill Schmidt Date: Mon, 16 Apr 2018 18:18:42 +0000 Subject: [PATCH] re PR target/85080 (gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c fails starting with r248678) [gcc/testsuite] 2018-04-16 Bill Schmidt PR target/85080 * gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c: Skip dump checks if the target supports efficient unaligned storage accesses. From-SVN: r259407 --- gcc/testsuite/ChangeLog | 6 ++++++ gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 77e67379b5a..31c576bf024 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2018-04-16 Bill Schmidt + + PR target/85080 + * gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c: Skip dump checks + if the target supports efficient unaligned storage accesses. + 2018-04-16 Aaron Sawdey PR target/83660 diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c index 5b5dd1bbd27..f2395fc6807 100644 --- a/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c +++ b/gcc/testsuite/gcc.dg/vect/costmodel/ppc/costmodel-pr37194.c @@ -22,6 +22,6 @@ ggSpectrum_Set20(float * data, float d) data[i] = d; } -/* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" } } */ -/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */ +/* { dg-final { scan-tree-dump-times "vectorization not profitable" 1 "vect" { target { ! vect_hw_misalign } } } } */ +/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target { ! vect_hw_misalign } } } } */ -- 2.30.2