diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1997-06-10 14:39:22 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1997-06-10 14:39:22 -0700 |
commit | d7d775a019c3a310bf54759560c7392bb03ea669 (patch) | |
tree | faf3e34ff36375f8c8ed9bac8492323950b2ae5d /gcc | |
parent | b2e0187668a161b6f98282bf87fda6099ddf6bf1 (diff) | |
download | gcc-d7d775a019c3a310bf54759560c7392bb03ea669.zip gcc-d7d775a019c3a310bf54759560c7392bb03ea669.tar.gz gcc-d7d775a019c3a310bf54759560c7392bb03ea669.tar.bz2 |
(emit_group_load): Add case using gen_lowpart.
From-SVN: r14224
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/expr.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1813,6 +1813,9 @@ emit_group_load (x, y) && GET_MODE (target_reg) == word_mode) /* This might be a const_double, so we can't just use SUBREG. */ source = operand_subword (y, 0, 0, VOIDmode); + else if (GET_MODE_SIZE (GET_MODE (target_reg)) + == GET_MODE_SIZE (GET_MODE (y))) + source = gen_lowpart (GET_MODE (target_reg), y); else abort (); } |