diff options
author | Nick Clifton <nickc@redhat.com> | 2000-06-27 01:31:59 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-06-27 01:31:59 +0000 |
commit | b85cd69747022f8a9dedb0806638430daecb20db (patch) | |
tree | 9669602560c29db43db0ebccd9267dbb95106729 /bfd/cpu-h8300.c | |
parent | fc0f0b4b7b1e791ea94328643beba3d7bacdcd7e (diff) | |
download | gdb-b85cd69747022f8a9dedb0806638430daecb20db.tar.gz |
Fix formatting.
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, }; |