aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorUros Bizjak <ubizjak@gmail.com>2012-11-07 22:34:48 +0000
committerUros Bizjak <ubizjak@gmail.com>2012-11-07 22:34:48 +0000
commite7398b3144461e414ed7a7e89592db8977782a11 (patch)
tree9e8fe562275b008838d5d17b264d28e9ca40cc7b /gcc/expr.c
parentb60e5d16bc7c7c72604568ad2201714cbef5ebf3 (diff)
PR middle-end/55235
* expr.c (store_expr): Do not call emit_block_move for non-BLKmode values. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@193314 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c17
1 files changed, 5 insertions, 12 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 57e71fbaca3..1e41625b2ed 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -5246,19 +5246,12 @@ store_expr (tree exp, rtx target, int call_param_p, bool nontemporal)
{
if (GET_MODE (target) == BLKmode)
{
- if (REG_P (temp))
- {
- if (TREE_CODE (exp) == CALL_EXPR)
- copy_blkmode_from_reg (target, temp, TREE_TYPE (exp));
- else
- store_bit_field (target,
- INTVAL (expr_size (exp)) * BITS_PER_UNIT,
- 0, 0, 0, GET_MODE (temp), temp);
- }
+ if (REG_P (temp) && TREE_CODE (exp) == CALL_EXPR)
+ copy_blkmode_from_reg (target, temp, TREE_TYPE (exp));
else
- emit_block_move (target, temp, expr_size (exp),
- (call_param_p
- ? BLOCK_OP_CALL_PARM : BLOCK_OP_NORMAL));
+ store_bit_field (target,
+ INTVAL (expr_size (exp)) * BITS_PER_UNIT,
+ 0, 0, 0, GET_MODE (temp), temp);
}
else
convert_move (target, temp, TYPE_UNSIGNED (TREE_TYPE (exp)));