diff options
Diffstat (limited to 'bfd/cpu-h8300.c')
-rw-r--r-- | bfd/cpu-h8300.c | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/bfd/cpu-h8300.c b/bfd/cpu-h8300.c index 567b7df9de2..9a4047ddb2e 100644 --- a/bfd/cpu-h8300.c +++ b/bfd/cpu-h8300.c @@ -65,15 +65,14 @@ h8300_scan (info, string) } } - -/* This routine is provided two arch_infos and works out the - machine which would be compatible with both and returns a pointer - to its info structure */ +/* This routine is provided two arch_infos and works out the machine + which would be compatible with both and returns a pointer to its + info structure. */ static const bfd_arch_info_type * compatible (in, out) - const bfd_arch_info_type * in; - const bfd_arch_info_type * out; + const bfd_arch_info_type *in; + const bfd_arch_info_type *out; { /* It's really not a good idea to mix and match modes. */ if (in->mach != out->mach) @@ -95,7 +94,9 @@ static const bfd_arch_info_type h8300_info_struct = true, /* the default machine */ compatible, h8300_scan, -/* local_bfd_reloc_type_lookup, */ +#if 0 + local_bfd_reloc_type_lookup, +#endif 0, }; @@ -112,7 +113,9 @@ static const bfd_arch_info_type h8300h_info_struct = false, /* the default machine */ compatible, h8300_scan, -/* local_bfd_reloc_type_lookup, */ +#if 0 + local_bfd_reloc_type_lookup, +#endif &h8300_info_struct, }; @@ -129,6 +132,8 @@ const bfd_arch_info_type bfd_h8300_arch = false, /* the default machine */ compatible, h8300_scan, -/* local_bfd_reloc_type_lookup, */ +#if 0 + local_bfd_reloc_type_lookup, +#endif &h8300h_info_struct, }; |