From 1ef1ca81c3e3725828eab62bd15b2d8f866d5215 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Tue, 23 Mar 1993 06:38:15 -0500 Subject: [PATCH] (expand_call): Use expr_size instead of doing it ourself. From-SVN: r3833 --- gcc/calls.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) { -- 2.30.2