]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[Patch testsuite] Further reduce the alignment in gcc.dg/vect/pr65310.c
authorJames Greenhalgh <james.greenhalgh@arm.com>
Tue, 10 Mar 2015 09:29:04 +0000 (09:29 +0000)
committerJames Greenhalgh <jgreenhalgh@gcc.gnu.org>
Tue, 10 Mar 2015 09:29:04 +0000 (09:29 +0000)
gcc/testsuite/

* gcc.dg/vect/pr65310.c (c): Reduce alignment to 4-bytes.

From-SVN: r221310

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/vect/pr65310.c

index c53f5531b1d477ae2f0da1f486ea2a9812813355..3d5e5fe38cf3e13ad26a49828f00b8dd8cb0c196 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-10  James Greenhalgh  <james.greenhalgh@arm.com>
+
+       * gcc.dg/vect/pr65310.c (c): Reduce alignment to 4-bytes.
+
 2015-03-10  Oleg Endo  <olegendo@gcc.gnu.org>
 
        * gcc.target/sh/pr54680.c: Add -fno-ipa-icf option.
index 2fd51b4d23bc98a2820e70808b795647ea33e6ed..91aa904d5640e5c49a1bef6055e4a066547cbcbd 100644 (file)
@@ -5,7 +5,7 @@ struct a
   int a[100];
 };
 typedef struct a b __attribute__ ((aligned (32)));
-typedef struct a c __attribute__ ((aligned (8)));
+typedef struct a c __attribute__ ((aligned (4)));
 
 int t(b *a)
 {