summaryrefslogtreecommitdiff
path: root/bfd/cpu-h8300.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2000-06-27 01:31:59 +0000
committerNick Clifton <nickc@redhat.com>2000-06-27 01:31:59 +0000
commit03848d983429f8ef28b38d1ee656e4f97e8cb905 (patch)
tree166693d593a2e6dbd0df796af756bc9d72c68f63 /bfd/cpu-h8300.c
parent701446eaa8c84dd0dddbd9cbfd665dfc21003e3e (diff)
downloadbinutils-redhat-03848d983429f8ef28b38d1ee656e4f97e8cb905.tar.gz
Fix formatting.
Diffstat (limited to 'bfd/cpu-h8300.c')
-rw-r--r--bfd/cpu-h8300.c23
1 files changed, 14 insertions, 9 deletions
diff --git a/bfd/cpu-h8300.c b/bfd/cpu-h8300.c
index 567b7df9de..9a4047ddb2 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,
};