diff options
author | Stan Shebs <shebs@apple.com> | 2002-02-12 22:26:12 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-02-12 22:26:12 +0000 |
commit | e6834654ca4f725fca97095f372d69a92eb74f49 (patch) | |
tree | 103777da73c8ea17b352e699f33cc56fafbc4834 /gcc/varasm.c | |
parent | d9b3eb63b2f690c056cecde5d6a4c79aaac942c9 (diff) | |
download | gcc-e6834654ca4f725fca97095f372d69a92eb74f49.zip gcc-e6834654ca4f725fca97095f372d69a92eb74f49.tar.gz gcc-e6834654ca4f725fca97095f372d69a92eb74f49.tar.bz2 |
c-typeck.c (digest_init): Handle vectors.
* c-typeck.c (digest_init): Handle vectors.
(really_start_incremental_init): Same.
(pop_init_level): Same.
(process_init_element): Same.
* varasm.c (output_constant): Same.
* expr.c (clear_storage): Same.
(store_constructor): Same.
* gcc.dg/altivec-3.c: New.
From-SVN: r49715
Diffstat (limited to 'gcc/varasm.c')
-rw-r--r-- | gcc/varasm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index e542817..0ca2172 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -4519,6 +4519,7 @@ output_constant (exp, size, align) break; case ARRAY_TYPE: + case VECTOR_TYPE: if (TREE_CODE (exp) == CONSTRUCTOR) { output_constructor (exp, size, align); |