From: Dale Johannesen Date: Sat, 23 Aug 2003 18:08:27 +0000 (+0000) Subject: calls.c (emit_library_call_value_1): Fix obvious errors in arguments to emit_group_load. X-Git-Tag: releases/gcc-3.4.0~4097 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=643642eb3f9633dea351982c4675502d6013e386;p=thirdparty%2Fgcc.git calls.c (emit_library_call_value_1): Fix obvious errors in arguments to emit_group_load. 2003-08-23 Dale Johannesen * calls.c (emit_library_call_value_1): Fix obvious errors in arguments to emit_group_load. From-SVN: r70741 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 55d4baa15883..bdd0d101eefe 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-08-23 Dale Johannesen + * calls.c (emit_library_call_value_1): Fix obvious errors in + arguments to emit_group_load. + 2003-08-23 Jason Eckhardt * calls.c (emit_library_call_value_1): Remove code related diff --git a/gcc/calls.c b/gcc/calls.c index 11d423275b36..900290f3622e 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -4146,7 +4146,8 @@ emit_library_call_value_1 (int retval, rtx orgfun, rtx value, if (GET_CODE (valreg) == PARALLEL) { temp = gen_reg_rtx (outmode); - emit_group_store (temp, valreg, NULL_TREE, outmode); + emit_group_store (temp, valreg, NULL_TREE, + GET_MODE_SIZE (outmode)); valreg = temp; } @@ -4189,7 +4190,7 @@ emit_library_call_value_1 (int retval, rtx orgfun, rtx value, { if (value == 0) value = gen_reg_rtx (outmode); - emit_group_store (value, valreg, NULL_TREE, outmode); + emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode)); } else if (value != 0) emit_move_insn (value, valreg);