diff options
author | Jakub Jelinek <jakub@redhat.com> | 2010-09-14 11:48:04 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2010-09-14 11:48:04 +0200 |
commit | 4a6e5cc885d6592194ff7e0c884d0bb802251c73 (patch) | |
tree | 6ab0ee5b1b486cac64d91f420e15bd1ac0df36e6 /gcc/dwarf2out.c | |
parent | 5a2c19863869535ff6487951a5732adb114bfb4a (diff) | |
download | gcc-4a6e5cc885d6592194ff7e0c884d0bb802251c73.zip gcc-4a6e5cc885d6592194ff7e0c884d0bb802251c73.tar.gz gcc-4a6e5cc885d6592194ff7e0c884d0bb802251c73.tar.bz2 |
re PR debug/45660 (ICE in dwarf2out_finish)
PR debug/45660
* dwarf2out.c (gen_decl_die): Call gen_type_die for origin before
gen_type_die for function/method return type.
* g++.dg/debug/pr45660.C: New test.
From-SVN: r164271
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 52632da..5ee14ee 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -20602,16 +20602,20 @@ gen_decl_die (tree decl, tree origin, dw_die_ref context_die) else if (debug_info_level > DINFO_LEVEL_TERSE) { /* Before we describe the FUNCTION_DECL itself, make sure that we - have described its return type. */ + have its containing type. */ + if (!origin) + origin = decl_class_context (decl); + if (origin != NULL_TREE) + gen_type_die (origin, context_die); + + /* And its return type. */ gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die); /* And its virtual context. */ if (DECL_VINDEX (decl) != NULL_TREE) gen_type_die (DECL_CONTEXT (decl), context_die); - /* And its containing type. */ - if (!origin) - origin = decl_class_context (decl); + /* Make sure we have a member DIE for decl. */ if (origin != NULL_TREE) gen_type_die_for_member (origin, decl, context_die); |