From: Alan Modra Date: Tue, 31 Aug 2010 05:34:46 +0000 (+0000) Subject: * config/obj-elf.c (obj_elf_init_stab_section): Fix assertion. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=91952a0680337a97f30637955148946e0681d6f6;p=binutils-gdb.git * config/obj-elf.c (obj_elf_init_stab_section): Fix assertion. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 420c41ecb13..70f25a76941 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2010-08-31 Alan Modra + + * config/obj-elf.c (obj_elf_init_stab_section): Fix assertion. + 2010-08-30 Richard Henderson * config/obj-coff-seh.c: Rewrite the entire file. diff --git a/gas/config/obj-elf.c b/gas/config/obj-elf.c index fc22d6e9cf0..e9ae4ea9e94 100644 --- a/gas/config/obj-elf.c +++ b/gas/config/obj-elf.c @@ -1,6 +1,6 @@ /* ELF object file format Copyright 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 + 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -1795,7 +1795,7 @@ obj_elf_init_stab_section (segT seg) strcpy (stabstr_name, segment_name (seg)); strcat (stabstr_name, "str"); stroff = get_stab_string_offset (file, stabstr_name); - know (stroff == 1); + know (stroff == 1 || (stroff == 0 && file[0] == '\0')); md_number_to_chars (p, stroff, 4); seg_info (seg)->stabu.p = p; }