diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-07-27 00:11:56 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-07-27 00:11:56 +0000 |
commit | ffeef0bbcb6a96f74bff342bb4292ad684fc54ab (patch) | |
tree | 50b3c1a9e05464ed03567b91699d409bd8f5fa24 /bfd/coff-i960.c | |
parent | e26e4fbc0b937e5a10dc40431439b6067be639d6 (diff) | |
download | gdb-ffeef0bbcb6a96f74bff342bb4292ad684fc54ab.zip gdb-ffeef0bbcb6a96f74bff342bb4292ad684fc54ab.tar.gz gdb-ffeef0bbcb6a96f74bff342bb4292ad684fc54ab.tar.bz2 |
(howto_rellong, howto_iprmed, howto_optcall): Use HOWTO macro.
Diffstat (limited to 'bfd/coff-i960.c')
-rw-r--r-- | bfd/coff-i960.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/bfd/coff-i960.c b/bfd/coff-i960.c index 550b75c..f9b8251 100644 --- a/bfd/coff-i960.c +++ b/bfd/coff-i960.c @@ -106,15 +106,15 @@ optcall_callback (abfd, reloc_entry, symbol_in, data, } static reloc_howto_type howto_rellong = - { (unsigned int) R_RELLONG, 0, 2, 32,false, 0, - complain_overflow_bitfield, 0,"rellong", true, 0xffffffff, - 0xffffffff}; + HOWTO ((unsigned int) R_RELLONG, 0, 2, 32,false, 0, + complain_overflow_bitfield, 0,"rellong", true, 0xffffffff, + 0xffffffff, 0); static reloc_howto_type howto_iprmed = - { R_IPRMED, 0, 2, 24,true,0, complain_overflow_signed,0, - "iprmed ", true, 0x00ffffff, 0x00ffffff}; + HOWTO (R_IPRMED, 0, 2, 24,true,0, complain_overflow_signed,0, + "iprmed ", true, 0x00ffffff, 0x00ffffff, 0); static reloc_howto_type howto_optcall = - { R_OPTCALL, 0,2,24,true,0, complain_overflow_signed, - optcall_callback, "optcall", true, 0x00ffffff, 0x00ffffff}; + HOWTO (R_OPTCALL, 0,2,24,true,0, complain_overflow_signed, + optcall_callback, "optcall", true, 0x00ffffff, 0x00ffffff, 0); static const reloc_howto_type * coff_i960_reloc_type_lookup (abfd, code) @@ -154,7 +154,7 @@ coff_i960_reloc_type_lookup (abfd, code) #undef coff_bfd_reloc_type_lookup #define coff_bfd_reloc_type_lookup coff_i960_reloc_type_lookup -bfd_target icoff_little_vec = +const bfd_target icoff_little_vec = { "coff-Intel-little", /* name */ bfd_target_coff_flavour, @@ -199,7 +199,7 @@ bfd_target icoff_little_vec = }; -bfd_target icoff_big_vec = +const bfd_target icoff_big_vec = { "coff-Intel-big", /* name */ bfd_target_coff_flavour, |