From: Richard Kenner Date: Tue, 23 Mar 1993 11:38:15 +0000 (-0500) Subject: (expand_call): Use expr_size instead of doing it ourself. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ef1ca81c3e3725828eab62bd15b2d8f866d5215;p=gcc.git (expand_call): Use expr_size instead of doing it ourself. From-SVN: r3833 --- diff --git a/gcc/calls.c b/gcc/calls.c index f5fb8a58ead..a4b8747a02b 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -919,8 +919,7 @@ expand_call (exp, target, ignore) { /* This is a variable-sized object. Make space on the stack for it. */ - rtx size_rtx = expand_expr (size_in_bytes (type), NULL_RTX, - VOIDmode, 0); + rtx size_rtx = expr_size (TREE_VALUE (p)); if (old_stack_level == 0) {