diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2004-06-20 14:46:33 +0200 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2004-06-20 12:46:33 +0000 |
commit | ce70456bd6bebd23787157dd3f0cc65eb4ad381d (patch) | |
tree | 9f83452b110436400d06fa94da9dccb33a0f75e6 /gcc | |
parent | c0e3aa48e50d3beab2abbbdc7098c7959d81b94c (diff) | |
download | gcc-ce70456bd6bebd23787157dd3f0cc65eb4ad381d.zip gcc-ce70456bd6bebd23787157dd3f0cc65eb4ad381d.tar.gz gcc-ce70456bd6bebd23787157dd3f0cc65eb4ad381d.tar.bz2 |
struct-complex-1_x.c: Add dummy symbol.
* gcc.dg/compat/struct-complex-1_x.c: Add dummy symbol.
* gcc.dg/compat/struct-complex-1_y.c: Likewise.
* gcc.dg/compat/union-m128-1_x.c: Likewise.
* gcc.dg/compat/union-m128-1_y.c: Likewise.
From-SVN: r83411
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/compat/struct-complex-1_x.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/compat/struct-complex-1_y.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/compat/union-m128-1_x.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/compat/union-m128-1_y.c | 3 |
5 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3cee377..78829eb 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,10 @@ +2004-06-20 Eric Botcazou <ebotcazou@libertysurf.fr> + + * gcc.dg/compat/struct-complex-1_x.c: Add dummy symbol. + * gcc.dg/compat/struct-complex-1_y.c: Likewise. + * gcc.dg/compat/union-m128-1_x.c: Likewise. + * gcc.dg/compat/union-m128-1_y.c: Likewise. + 2004-06-20 Zack Weinberg <zack@codesourcery.com> * g++.dg/expr/enum1.C, g++.dg/opt/const3.C: Declare abort with diff --git a/gcc/testsuite/gcc.dg/compat/struct-complex-1_x.c b/gcc/testsuite/gcc.dg/compat/struct-complex-1_x.c index 180d58a..c77ba33 100644 --- a/gcc/testsuite/gcc.dg/compat/struct-complex-1_x.c +++ b/gcc/testsuite/gcc.dg/compat/struct-complex-1_x.c @@ -26,4 +26,7 @@ struct_complex_1_x () bar (st2); return 0; } +#else +int dummy_x; #endif + diff --git a/gcc/testsuite/gcc.dg/compat/struct-complex-1_y.c b/gcc/testsuite/gcc.dg/compat/struct-complex-1_y.c index 0f0c3f3..9ff450f 100644 --- a/gcc/testsuite/gcc.dg/compat/struct-complex-1_y.c +++ b/gcc/testsuite/gcc.dg/compat/struct-complex-1_y.c @@ -18,4 +18,7 @@ foo(struct stc x) if (x.s1 != 1 || x.s2 != 2 || x.x.r != 2 || x.x.i != 4) abort (); } +#else +int dummy_y; #endif + diff --git a/gcc/testsuite/gcc.dg/compat/union-m128-1_x.c b/gcc/testsuite/gcc.dg/compat/union-m128-1_x.c index 0a6f886..06a4ef5 100644 --- a/gcc/testsuite/gcc.dg/compat/union-m128-1_x.c +++ b/gcc/testsuite/gcc.dg/compat/union-m128-1_x.c @@ -23,4 +23,7 @@ union_m128_1_x () foo(un); foo(st); } +#else +int dummy_x; #endif + diff --git a/gcc/testsuite/gcc.dg/compat/union-m128-1_y.c b/gcc/testsuite/gcc.dg/compat/union-m128-1_y.c index 153ed7d..2b6eb0a 100644 --- a/gcc/testsuite/gcc.dg/compat/union-m128-1_y.c +++ b/gcc/testsuite/gcc.dg/compat/union-m128-1_y.c @@ -26,4 +26,7 @@ foo (SS_struct_mi128 st) || x.u [1] != 0xfedcba9876543210LL) abort (); } +#else +int dummy_y; #endif + |