summaryrefslogtreecommitdiff
path: root/bfd/cpu-cris.c
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2005-02-01 03:27:59 +0000
committerHans-Peter Nilsson <hp@axis.com>2005-02-01 03:27:59 +0000
commit3a0bc016ab1074ffd281b65e21b0c3d42e56f86b (patch)
tree160c13fde1c96435c438eb742f68ec68c758675f /bfd/cpu-cris.c
parenta681948d33b5d98e9505cddd291c17141d53dce2 (diff)
downloadbinutils-redhat-3a0bc016ab1074ffd281b65e21b0c3d42e56f86b.tar.gz
* cpu-cris.c (get_compatible): Rearrange disabled code and comment
for clarity.
Diffstat (limited to 'bfd/cpu-cris.c')
-rw-r--r--bfd/cpu-cris.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/bfd/cpu-cris.c b/bfd/cpu-cris.c
index 67bc861202..884b2c947a 100644
--- a/bfd/cpu-cris.c
+++ b/bfd/cpu-cris.c
@@ -45,7 +45,9 @@ get_compatible (a,b)
if (b->mach == bfd_mach_cris_v10_v32)
return a;
- /* See ldlang.c:lang_check. Quite illogically, incompatible arches
+#if 0
+ /* The code below is disabled but kept as a warning.
+ See ldlang.c:lang_check. Quite illogically, incompatible arches
(as signalled by this function) are only *warned* about, while with
this function signalling compatible ones, we can have the
cris_elf_merge_private_bfd_data function return an error. This is
@@ -56,12 +58,9 @@ get_compatible (a,b)
pretending matching machs here. */
/* Except for the compatible mach, machs must match. */
-
- /*
- This code is disabled but kept as a warning:
- if (a->mach != b->mach)
- return NULL;
- */
+ if (a->mach != b->mach)
+ return NULL;
+#endif
return a;
}