]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
re PR testsuite/59442 (movapd tests fail if built with -fstack-protector-strong/all)
authorRyan Mansfield <rmansfield@qnx.com>
Thu, 12 Dec 2013 07:49:42 +0000 (08:49 +0100)
committerUros Bizjak <uros@gcc.gnu.org>
Thu, 12 Dec 2013 07:49:42 +0000 (08:49 +0100)
PR testsuite/59442
* gcc.target/i386/sse2-movapd-1.c: Fix alignment attributes.
* gcc.target/i386/sse2-movapd-2.c: Likewise.
* gcc.target/i386/avx-vmovapd-256-1.c: Likewise.
* gcc.target/i386/avx-vmovapd-256-2.c: Likewise.

From-SVN: r205919

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/avx-vmovapd-256-1.c
gcc/testsuite/gcc.target/i386/avx-vmovapd-256-2.c
gcc/testsuite/gcc.target/i386/sse2-movapd-1.c
gcc/testsuite/gcc.target/i386/sse2-movapd-2.c

index 248928e759c5429c697b06d2349314af3a652250..6022e3f38eb550667aaf31fe89e1e9f90b6a03f7 100644 (file)
@@ -1,3 +1,11 @@
+2013-12-12  Ryan Mansfield  <rmansfield@qnx.com>
+
+       PR testsuite/59442
+       * gcc.target/i386/sse2-movapd-1.c: Fix alignment attributes.
+       * gcc.target/i386/sse2-movapd-2.c: Likewise.
+       * gcc.target/i386/avx-vmovapd-256-1.c: Likewise.
+       * gcc.target/i386/avx-vmovapd-256-2.c: Likewise.
+
 2013-12-11  Sriraman Tallam  <tmsriram@google.com>
 
        PR target/59390
@@ -16,7 +24,7 @@
        * g++.dg/cilk-plus/cilk-plus.exp: Added support to run Cilk Keywords
        test stored in c-c++-common.  Also, added the Cilk runtime's library
        to the ld_library_path.
-       
+
 2013-12-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
 
        PR middle-end/59134
@@ -26,8 +34,7 @@
 2013-12-11  Bernd Edlinger  <bernd.edlinger@hotmail.de>
            Sandra Loosemore  <sandra@codesourcery.com>
 
-       * gcc.dg/pr23623.c: Update to test interaction with C++
-       memory model.
+       * gcc.dg/pr23623.c: Update to test interaction with C++ memory model.
 
 2013-12-11  Sandra Loosemore  <sandra@codesourcery.com>
 
index d91212283071ef12695148c3214a01b095c159d8..cc524c8a64126492718948778d1e047c51415577 100644 (file)
@@ -15,7 +15,7 @@ void static
 avx_test (void)
 {
   union256d u;
-  double e [4] __attribute__ ((aligned (8)))  = {41124.234,2344.2354,8653.65635,856.43576};
+  double e [4] __attribute__ ((aligned (32)))  = {41124.234,2344.2354,8653.65635,856.43576};
 
   u.x = test (e);
 
index 96a664ac11e5024b0d50e81a6642cfe3d82a8235..9224484cac16a51327fbedf3c8b187de6b2c9194 100644 (file)
@@ -15,7 +15,7 @@ void static
 avx_test (void)
 {
   union256d u;
-  double e [4] __attribute__ ((aligned (8))) = {0.0};
+  double e [4] __attribute__ ((aligned (32))) = {0.0};
 
   u.x = _mm256_set_pd (39578.467285, 7856.342941, 85632.783567, 47563.234215);
 
index b8b9dba0c2090f71112217191b5e73b216937605..55d9f594f55eeb50e59a9f6cea0949f1ef0fdcbd 100644 (file)
@@ -25,7 +25,7 @@ static void
 TEST (void)
 {
   union128d u;
-  double e[2] __attribute__ ((aligned (8))) = {2134.3343,1234.635654};
+  double e[2] __attribute__ ((aligned (16))) = {2134.3343,1234.635654};
 
   u.x = test (e);   
 
index 8298551baf54293038cd32abd2be281609299e66..87da332779a82cc5cbc55203aaf62593731add78 100644 (file)
@@ -25,7 +25,7 @@ static void
 TEST (void)
 {
   union128d u;
-  double e[2] __attribute__ ((aligned (8))) = {0.0};
+  double e[2] __attribute__ ((aligned (16))) = {0.0};
 
   u.x = _mm_set_pd (2134.3343,1234.635654);