From 1fcebc1100ac1071632480c742df280649fab312 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Thu, 13 May 2010 16:24:36 +0200 Subject: re PR middle-end/44104 (New test failures) PR debug/44104 * dwarf2out.c (modified_type_die): Don't dereference mod_type_die if it is NULL. From-SVN: r159367 --- gcc/dwarf2out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/dwarf2out.c') diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index fc941e2..70dbd8e 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -12544,7 +12544,7 @@ modified_type_die (tree type, int is_const_type, int is_volatile_type, add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name)); } /* This probably indicates a bug. */ - else if (mod_type_die->die_tag == DW_TAG_base_type) + else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type) add_name_attribute (mod_type_die, "__unknown__"); if (qualified_type) -- cgit v1.1