Commit 5a434178 by James Greenhalgh Committed by James Greenhalgh

[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
parent fe7ac503
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> 2015-03-10 Oleg Endo <olegendo@gcc.gnu.org>
* gcc.target/sh/pr54680.c: Add -fno-ipa-icf option. * gcc.target/sh/pr54680.c: Add -fno-ipa-icf option.
......
...@@ -5,7 +5,7 @@ struct a ...@@ -5,7 +5,7 @@ struct a
int a[100]; int a[100];
}; };
typedef struct a b __attribute__ ((aligned (32))); 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) int t(b *a)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment