From: Ken Raeburn Date: Sat, 1 Jul 1995 04:20:05 +0000 (+0000) Subject: removed unused elf_64_p field X-Git-Tag: gdb-4_18~11564 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5cab016b727502924785a198be190c9ee72ed6ce;p=platform%2Fupstream%2Fbinutils.git removed unused elf_64_p field --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 015ac61..48b795d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,6 +1,10 @@ Sat Jul 1 00:11:08 1995 Ken Raeburn * elfxx-target.h: New file. + + * libelf.h (struct elf_backend_data): Remove elf_64_p field. + * elfxx-target.h (elfNN_bed): Don't set it. + * elf32-target.h, elf64-target.h: Deleted. * Makefile.in (elf32-target.h, elf64-target.h): Build them from elfxx-target.h. diff --git a/bfd/elfxx-target.h b/bfd/elfxx-target.h index f973969..de5fa61 100644 --- a/bfd/elfxx-target.h +++ b/bfd/elfxx-target.h @@ -186,11 +186,6 @@ static CONST struct elf_backend_data elfNN_bed = #else 1, /* use_rela_p */ #endif -#if NN == 64 - 1, /* elf_64_p */ -#else - 0, /* elf_64_p */ -#endif ELF_ARCH, /* arch */ ELF_MACHINE_CODE, /* elf_machine_code */ ELF_MAXPAGESIZE, /* maxpagesize */ diff --git a/bfd/libelf.h b/bfd/libelf.h index f945eec..28b9c9e 100644 --- a/bfd/libelf.h +++ b/bfd/libelf.h @@ -178,9 +178,6 @@ struct elf_backend_data approach will need to be changed. */ int use_rela_p; - /* Whether this backend is 64 bits or not. FIXME: Who cares? */ - int elf_64_p; - /* The architecture for this backend. */ enum bfd_architecture arch;