From: Richard Henderson Date: Wed, 1 Nov 2000 22:45:09 +0000 (-0800) Subject: dwarf2out.c (loc_descriptor_from_tree): Check for null result from rtl_for_decl_location. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a97c960093d8b6db44ea89e537af3b6df4df9516;p=gcc.git dwarf2out.c (loc_descriptor_from_tree): Check for null result from rtl_for_decl_location. * dwarf2out.c (loc_descriptor_from_tree): Check for null result from rtl_for_decl_location. (add_location_or_const_value_attribute): Likewise. From-SVN: r37196 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e04fef7f368..f2e7b3a9c65 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2000-11-01 Richard Henderson + + * dwarf2out.c (loc_descriptor_from_tree): Check for null result + from rtl_for_decl_location. + (add_location_or_const_value_attribute): Likewise. + 2000-11-01 Neil Booth * cpplib.c (run_directive): Use correct line number for output diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 77cda6453d0..77de3a9b769 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -7506,7 +7506,9 @@ loc_descriptor_from_tree (loc, addressp) rtx rtl = rtl_for_decl_location (loc); enum machine_mode mode = DECL_MODE (loc); - if (CONSTANT_P (rtl)) + if (rtl == NULL_RTX) + break; + else if (CONSTANT_P (rtl)) { ret = new_loc_descr (DW_OP_addr, 0, 0); ret->dw_loc_oprnd1.val_class = dw_val_class_addr; @@ -8274,6 +8276,8 @@ add_location_or_const_value_attribute (die, decl) abort (); rtl = rtl_for_decl_location (decl); + if (rtl == NULL_RTX) + return; switch (GET_CODE (rtl)) {