Commit 85c53d24 by Jim Wilson

(expand_builtin, case BUILT_IN_MEMCPY): Call force_operand

on dest_rtx before returning it.

From-SVN: r9393
parent 545bcf37
......@@ -7754,7 +7754,7 @@ expand_builtin (exp, target, subtarget, mode, ignore)
emit_block_move (dest_mem, src_mem,
expand_expr (len, NULL_RTX, VOIDmode, 0),
MIN (src_align, dest_align));
return dest_rtx;
return force_operand (dest_rtx, NULL_RTX);
}
/* These comparison functions need an instruction that returns an actual
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment