[Patch testsuite] Further reduce the alignment in gcc.dg/vect/pr65310.c

gcc/testsuite/

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

From-SVN: r221310
This commit is contained in:
James Greenhalgh 2015-03-10 09:29:04 +00:00 committed by James Greenhalgh
parent fe7ac5039d
commit 5a43417885
2 changed files with 5 additions and 1 deletions

View 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.

View 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)
{