From 1d1b7dc4221762338014df6586e9ac0cbef2fed7 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Sun, 16 Sep 2012 19:58:15 +0000 Subject: calls.c (expand_call): Use emit_group_move for PARALLEL->PARALLEL moves. gcc/ * calls.c (expand_call): Use emit_group_move for PARALLEL->PARALLEL moves. From-SVN: r191363 --- gcc/calls.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'gcc/calls.c') diff --git a/gcc/calls.c b/gcc/calls.c index d4d0917..2180a62 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -3273,7 +3273,13 @@ expand_call (tree exp, rtx target, int ignore) { if (target == 0) target = emit_group_move_into_temps (valreg); - else if (!rtx_equal_p (target, valreg)) + else if (rtx_equal_p (target, valreg)) + ; + else if (GET_CODE (target) == PARALLEL) + /* Handle the result of a emit_group_move_into_temps + call in the previous pass. */ + emit_group_move (target, valreg); + else emit_group_store (target, valreg, rettype, int_size_in_bytes (rettype)); -- cgit v1.1