diff options
author | Jim Wilson <wilson@redhat.com> | 2001-04-15 08:37:34 +0000 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 2001-04-15 01:37:34 -0700 |
commit | aa570f545ad4d643c09eaa8c3b06127e6895c0e6 (patch) | |
tree | d2753aaa27b4400c2ffb8863d639aefa8da8e820 /gcc/function.c | |
parent | 2d73b59a12d6a1de5efaf43c6682750af768f297 (diff) | |
download | gcc-aa570f545ad4d643c09eaa8c3b06127e6895c0e6.zip gcc-aa570f545ad4d643c09eaa8c3b06127e6895c0e6.tar.gz gcc-aa570f545ad4d643c09eaa8c3b06127e6895c0e6.tar.bz2 |
Fix ia64 libffi build failure.
* function.c (expand_function_end): Handle PARALLEL real_decl_rtl.
From-SVN: r41361
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/function.c b/gcc/function.c index a561d8e..565fcf0 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -6885,6 +6885,10 @@ expand_function_end (filename, line, end_bindings) convert_move (real_decl_rtl, decl_rtl, unsignedp); } + else if (GET_CODE (real_decl_rtl) == PARALLEL) + emit_group_load (real_decl_rtl, decl_rtl, + int_size_in_bytes (TREE_TYPE (decl_result)), + TYPE_ALIGN (TREE_TYPE (decl_result))); else emit_move_insn (real_decl_rtl, decl_rtl); |