diff options
author | John Gilmore <gnu@cygnus> | 1991-10-07 02:16:22 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-07 02:16:22 +0000 |
commit | 733ac8407d4aa1fea90ca083cd1b4f42ff4ea423 (patch) | |
tree | eab0a38c3b4e9401269542661722c0145a35aed1 | |
parent | 58b8383afd40ee3149ac1a316517c1a4aa4ac21f (diff) | |
download | gdb-733ac8407d4aa1fea90ca083cd1b4f42ff4ea423.zip gdb-733ac8407d4aa1fea90ca083cd1b4f42ff4ea423.tar.gz gdb-733ac8407d4aa1fea90ca083cd1b4f42ff4ea423.tar.bz2 |
* 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.
-rw-r--r-- | bfd/cpu-a29k.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/bfd/cpu-a29k.c b/bfd/cpu-a29k.c index 9048139..d9a72f2 100644 --- a/bfd/cpu-a29k.c +++ b/bfd/cpu-a29k.c @@ -2,9 +2,7 @@ #include <bfd.h> #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); } - - - |