From 2b4092f276fb36dec91e680adde30c6be13248fd Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 8 Jul 1996 15:16:35 -0700 Subject: [PATCH] (expand_call): For assign_stack_temp call in PARALLEL case, get mode from type instead of using BLKmode. From-SVN: r12414 --- gcc/calls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/calls.c b/gcc/calls.c index 8d627f9c5b8..46843941dac 100644 --- a/gcc/calls.c +++ b/gcc/calls.c @@ -2038,7 +2038,7 @@ expand_call (exp, target, ignore) if (target == 0) { int bytes = int_size_in_bytes (TREE_TYPE (exp)); - target = assign_stack_temp (BLKmode, bytes, 0); + target = assign_stack_temp (TYPE_MODE (TREE_TYPE (exp)), bytes, 0); MEM_IN_STRUCT_P (target) = AGGREGATE_TYPE_P (TREE_TYPE (exp)); preserve_temp_slots (target); } -- 2.30.2