From: rguenth Date: Wed, 27 Jul 2016 11:11:22 +0000 (+0000) Subject: 2016-07-27 Richard Biener X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=262a83d5138005768d3ffc99ffa2fcc26ed56f6c;p=thirdparty%2Fgcc.git 2016-07-27 Richard Biener * gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c: Remove. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@238784 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 727e84c43a60..3f8129ad6fbb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-07-27 Richard Biener + + * gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c: Remove. + 2016-07-27 Martin Liska * gcc.dg/predict-13.c: New test. diff --git a/gcc/testsuite/gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c b/gcc/testsuite/gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c deleted file mode 100644 index a88b14874b75..000000000000 --- a/gcc/testsuite/gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c +++ /dev/null @@ -1,15 +0,0 @@ -/* { dg-do compile } */ -/* { dg-additional-options "-fdump-tree-slp-details" } */ - -struct x { double d[2]; }; - -struct x -pack (double a, double aa) -{ - struct x u; - u.d[0] = a; - u.d[1] = aa; - return u; -} - -/* { dg-final { scan-tree-dump-times "vectorization is not profitable" 1 "slp2" } } */