Commit 9589325f by Matt Kraai Committed by Matt Kraai

builtins.c (expand_builtin_memcpy): Use mode of dest_addr for intermediate computation.

	* builtins.c (expand_builtin_memcpy): Use mode of dest_addr for
	intermediate computation.

From-SVN: r67154
parent fcb6fa85
2003-05-24 Matt Kraai <kraai@alumni.cmu.edu>
* builtins.c (expand_builtin_memcpy): Use mode of dest_addr for
intermediate computation.
2003-05-23 Eric Christopher <echristo@redhat.com>
* config/mips/mips.md (clzsi, clzdi): New patterns.
......
......@@ -2377,7 +2377,7 @@ expand_builtin_memcpy (arglist, target, mode, endp)
if (endp == 2)
{
result = simplify_gen_binary (MINUS, GET_MODE (result),
result = simplify_gen_binary (MINUS, GET_MODE (dest_addr),
result, const1_rtx);
result = force_operand (result, NULL_RTX);
}
......
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