diff options
author | Roger Sayle <roger@eyesopen.com> | 2006-04-10 05:13:59 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2006-04-10 05:13:59 +0000 |
commit | cf26aa89100a9340eaae73c3beee6dd791cb7777 (patch) | |
tree | 5acf7f2bbaf4d2245c84b597503f5ad48981777f /gcc/expr.c | |
parent | ef2bb311e5876bd844395f54c823588e01bf01a3 (diff) | |
download | gcc-cf26aa89100a9340eaae73c3beee6dd791cb7777.zip gcc-cf26aa89100a9340eaae73c3beee6dd791cb7777.tar.gz gcc-cf26aa89100a9340eaae73c3beee6dd791cb7777.tar.bz2 |
expr.c (store_constructor): Don't bother clearing target if we're about to assign a vector to it using...
* expr.c (store_constructor): Don't bother clearing target if
we're about to assign a vector to it using vec_init_optab.
From-SVN: r112817
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5325,7 +5325,7 @@ store_constructor (tree exp, rtx target, int cleared, HOST_WIDE_INT size) } /* Inform later passes that the old value is dead. */ - if (!cleared && REG_P (target)) + if (!cleared && !vector && REG_P (target)) emit_move_insn (target, CONST0_RTX (GET_MODE (target))); /* Store each element of the constructor into the corresponding |