mirror of git://gcc.gnu.org/git/gcc.git
[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:
parent
fe7ac5039d
commit
5a43417885
|
|
@ -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>
|
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
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue