projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
165b8e3
)
* cpu-mips.c (mips_compatible): Don't try to check machine
author
Thiemo Seufer
<ths@networkno.de>
Sun, 19 May 2002 21:06:34 +0000
(21:06 +0000)
committer
Thiemo Seufer
<ths@networkno.de>
Sun, 19 May 2002 21:06:34 +0000
(21:06 +0000)
compatibility.
bfd/ChangeLog
patch
|
blob
|
history
bfd/cpu-mips.c
patch
|
blob
|
history
diff --git
a/bfd/ChangeLog
b/bfd/ChangeLog
index e5e7ce329e4a85a0fc10367c66ca87fbd796fb90..02b963fc1ff4680be73211bdf3a5ee1afa4cdfe7 100644
(file)
--- a/
bfd/ChangeLog
+++ b/
bfd/ChangeLog
@@
-1,3
+1,8
@@
+2002-05-19 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+ * cpu-mips.c (mips_compatible): Don't try to check machine
+ compatibility.
+
2002-05-18 Tom Rix <trix@redhat.com>
* coff64-rs6000.c (_bfd_xcoff64_swap_aux_out): Fix C_FILE auxent.
diff --git
a/bfd/cpu-mips.c
b/bfd/cpu-mips.c
index d54b0a5589143cdb47d9012538344e15aa54a638..d5343ff31ef25e723196c3b52168c02ab03929bc 100644
(file)
--- a/
bfd/cpu-mips.c
+++ b/
bfd/cpu-mips.c
@@
-37,11
+37,8
@@
mips_compatible (a, b)
if (a->arch != b->arch)
return NULL;
- if (a->mach > b->mach)
- return a;
-
- if (b->mach > a->mach)
- return b;
+ /* Machine compatibility is checked in
+ _bfd_mips_elf_merge_private_bfd_data. */
return a;
}