Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c

Issue 3050029: [gcc] GCC 4.5.0=>4.5.1 (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/nacl-toolchain.git
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/vect/vect-align-2.c ('k') | gcc/gcc/testsuite/gcc.dg/vect/vect-complex-5.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c
diff --git a/gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c b/gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c
index 85c416597f6d312ddc0d97c1bc07518cefeeec64..0e00e789ac1b5a15534457d8489337a45cef9238 100644
--- a/gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c
+++ b/gcc/gcc/testsuite/gcc.dg/vect/vect-complex-4.c
@@ -11,7 +11,7 @@ struct foostr {
_Complex short f2;
};
-struct foostr a[16] __attribute__ ((__aligned__(16))) =
+struct foostr a[16] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) =
{
11 + 23i, 24 + 22i,
11 + 26i, 24 + 35i,
@@ -31,7 +31,7 @@ struct foostr a[16] __attribute__ ((__aligned__(16))) =
35 + 36i, 34 + 28i,
};
-struct foostr b[16] __attribute__ ((__aligned__(16))) =
+struct foostr b[16] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__))) =
{
37 + 12i, 23 + 15i,
14 + 11i, 13 + 25i,
@@ -50,7 +50,7 @@ struct foostr b[16] __attribute__ ((__aligned__(16))) =
25 + 27i, 15 + 30i,
10 + 31i, 37 + 37i,
};
-struct foostr c[16] __attribute__ ((__aligned__(16)));
+struct foostr c[16] __attribute__ ((__aligned__(__BIGGEST_ALIGNMENT__)));
struct foostr res[N] =
{
48 + 35i, 47 + 37i,
« no previous file with comments | « gcc/gcc/testsuite/gcc.dg/vect/vect-align-2.c ('k') | gcc/gcc/testsuite/gcc.dg/vect/vect-complex-5.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698