Commit 1ef1ca81 by Richard Kenner

(expand_call): Use expr_size instead of doing it ourself.

From-SVN: r3833
parent 25e51a69
...@@ -919,8 +919,7 @@ expand_call (exp, target, ignore) ...@@ -919,8 +919,7 @@ expand_call (exp, target, ignore)
{ {
/* This is a variable-sized object. Make space on the stack /* This is a variable-sized object. Make space on the stack
for it. */ for it. */
rtx size_rtx = expand_expr (size_in_bytes (type), NULL_RTX, rtx size_rtx = expr_size (TREE_VALUE (p));
VOIDmode, 0);
if (old_stack_level == 0) if (old_stack_level == 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