From: Petr Machata Date: Wed, 18 Feb 2009 16:11:00 +0000 (+0100) Subject: Handle DW_AT_entry_pc when deciding what the reloc target should be X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b2132e8fe559f56ae8681fde93ed9da93ca625d6;p=thirdparty%2Felfutils.git Handle DW_AT_entry_pc when deciding what the reloc target should be --- diff --git a/src/dwarflint.c b/src/dwarflint.c index 06be1f4d5..700e19d45 100644 --- a/src/dwarflint.c +++ b/src/dwarflint.c @@ -2533,6 +2533,7 @@ reloc_target (uint8_t form, struct abbrev_attrib *at) { case DW_AT_low_pc: case DW_AT_high_pc: + case DW_AT_entry_pc: return sec_text; };