Commit 953312a8 by Richard Henderson Committed by Richard Henderson

builtins.c (expand_builtin_memmove): If fold_builtin_memmove succeeds, only expand the result.

        * builtins.c (expand_builtin_memmove): If fold_builtin_memmove
        succeeds, only expand the result.

From-SVN: r89282
parent a8afd3ac
2004-10-19 Richard Hendeson <rth@redhat.com>
* builtins.c (expand_builtin_memmove): If fold_builtin_memmove
succeeds, only expand the result.
2004-10-19 Richard Hendeson <rth@redhat.com>
PR middle-end/17885
* tree.c (recompute_tree_invarant_for_addr_expr): Always poll address
of INDIRECT_REF.
......
......@@ -2725,7 +2725,7 @@ expand_builtin_memmove (tree arglist, tree type, rtx target,
tree result = fold_builtin_memmove (arglist, type);
if (result)
expand_expr (result, target, mode, EXPAND_NORMAL);
return expand_expr (result, target, mode, EXPAND_NORMAL);
/* If DEST is not a pointer type, call the normal function. */
if (dest_align == 0)
......
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