* elf.c (bfd_section_from_shdr): Remove extraneous breaks.

* targets.c (find_target): Remove extraneous break.
This commit is contained in:
Ben Elliston 2006-10-26 00:14:39 +00:00
parent 0b85353719
commit 761c7f08ff
3 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2006-10-26 Ben Elliston <bje@au.ibm.com>
* elf.c (bfd_section_from_shdr): Remove extraneous breaks.
* targets.c (find_target): Remove extraneous break.
2006-10-26 Ben Elliston <bje@au.ibm.com>
* coff-maxq.c (coff_maxq20_reloc): Remove unused variable `howto'.

View file

@ -2126,13 +2126,11 @@ bfd_section_from_shdr (bfd *abfd, unsigned int shindex)
abfd->flags |= HAS_RELOC;
return TRUE;
}
break;
case SHT_GNU_verdef:
elf_dynverdef (abfd) = shindex;
elf_tdata (abfd)->dynverdef_hdr = *hdr;
return _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex);
break;
case SHT_GNU_versym:
if (hdr->sh_entsize != sizeof (Elf_External_Versym))

View file

@ -1290,7 +1290,6 @@ find_target (const char *name)
while (match->vector == NULL)
++match;
return match->vector;
break;
}
}