diff options
author | Jakub Jelinek <jakub@redhat.com> | 2011-03-17 21:33:54 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2011-03-17 21:33:54 +0100 |
commit | a82ff31f392508ef56c4021a711ec08982dadf76 (patch) | |
tree | 496891b63014ea8e0128f03a522aec63c8048962 /gcc/function.c | |
parent | 82ce305c0ce60d86928e6d2c7451d0401a446a78 (diff) | |
download | gcc-a82ff31f392508ef56c4021a711ec08982dadf76.zip gcc-a82ff31f392508ef56c4021a711ec08982dadf76.tar.gz gcc-a82ff31f392508ef56c4021a711ec08982dadf76.tar.bz2 |
re PR debug/48163 (ICEs for cris-elf, like gcc.c-torture/compile/calls.c gcc.c-torture/execute/complex-1.c)
PR debug/48163
* function.c (assign_parms): For data.passed_pointer parms
use MEM of data.entry_parm instead of data.entry_parm itself
as DECL_INCOMING_RTL.
* dwarf2out.c (rtl_for_decl_location): Use DECL_INCOMING_RTL
also when passed and declared mode is the same, DECL_RTL
is a MEM with pseudo as address and DECL_INCOMING_RTL is
a MEM too.
From-SVN: r171113
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 1f7722c..64950a1 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -3403,7 +3403,15 @@ assign_parms (tree fndecl) } /* Record permanently how this parm was passed. */ - set_decl_incoming_rtl (parm, data.entry_parm, data.passed_pointer); + if (data.passed_pointer) + { + rtx incoming_rtl + = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (data.passed_type)), + data.entry_parm); + set_decl_incoming_rtl (parm, incoming_rtl, true); + } + else + set_decl_incoming_rtl (parm, data.entry_parm, false); /* Update info on where next arg arrives in registers. */ targetm.calls.function_arg_advance (&all.args_so_far, data.promoted_mode, |