projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e71f7aa
)
(expand_call): For assign_stack_temp call in PARALLEL case,
author
Jim Wilson
<wilson@gcc.gnu.org>
Mon, 8 Jul 1996 22:16:35 +0000
(15:16 -0700)
committer
Jim Wilson
<wilson@gcc.gnu.org>
Mon, 8 Jul 1996 22:16:35 +0000
(15:16 -0700)
get mode from type instead of using BLKmode.
From-SVN: r12414
gcc/calls.c
patch
|
blob
|
history
diff --git
a/gcc/calls.c
b/gcc/calls.c
index 8d627f9c5b8937da5bf355099e327273ef240e8e..46843941dac3961337b2e21e9aad6cbc286c1b61 100644
(file)
--- 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);
}