From: John Gilmore Date: Mon, 7 Oct 1991 02:16:22 +0000 (+0000) Subject: * archures.c: Rename `struct bfd_arch_info_struct' to `struct X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=733ac8407d4aa1fea90ca083cd1b4f42ff4ea423;p=binutils-gdb.git * archures.c: Rename `struct bfd_arch_info_struct' to `struct bfd_arch_info'. Rename `typedef bfd_arch_info_struct_type' to `bfd_arch_info_type'. All uses changed. --- diff --git a/bfd/cpu-a29k.c b/bfd/cpu-a29k.c index 9048139a7f2..d9a72f28264 100644 --- a/bfd/cpu-a29k.c +++ b/bfd/cpu-a29k.c @@ -2,9 +2,7 @@ #include #include "libbfd.h" - - -static bfd_arch_info_struct_type arch_info_struct = +static bfd_arch_info_type arch_info_struct = { 32, /* 32 bits in a word */ 32, /* 32 bits in an address */ @@ -20,13 +18,7 @@ static bfd_arch_info_struct_type arch_info_struct = 0, }; - - - void DEFUN_VOID(bfd_a29k_arch) { bfd_arch_linkin(&arch_info_struct); } - - -