aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2016-07-27 11:11:22 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2016-07-27 11:11:22 +0000
commit8de22ea0b15dbfdb61461d8732b05c9ce9ce0f48 (patch)
tree71af473b2382ae7286be47e2674aa5eeffa989f6 /gcc
parentdd583351acbf823a19af80146b1655e60f4b5ca4 (diff)
downloadgcc-8de22ea0b15dbfdb61461d8732b05c9ce9ce0f48.zip
gcc-8de22ea0b15dbfdb61461d8732b05c9ce9ce0f48.tar.gz
gcc-8de22ea0b15dbfdb61461d8732b05c9ce9ce0f48.tar.bz2
costmodel-pr68961.c: Remove.
2016-07-27 Richard Biener <rguenther@suse.de> * gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c: Remove. From-SVN: r238784
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c15
2 files changed, 4 insertions, 15 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 727e84c..3f8129a 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2016-07-27 Richard Biener <rguenther@suse.de>
+
+ * gcc.dg/vect/costmodel/x86_64/costmodel-pr68961.c: Remove.
+
2016-07-27 Martin Liska <mliska@suse.cz>
* 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 a88b148..0000000
--- 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" } } */