From 17a8343285a724743cc3ec6667845715f1bdc21e Mon Sep 17 00:00:00 2001 From: Tomer Levi Date: Thu, 23 Dec 2004 13:48:25 +0000 Subject: 2004-12-23 Tomer Levi * elf32-crx.c (elf32_crx_relax_section): Support 'bcop' relaxation. --- bfd/ChangeLog | 4 ++++ bfd/elf32-crx.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'bfd') diff --git a/bfd/ChangeLog b/bfd/ChangeLog index f110a23..6a62303 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2004-12-23 Tomer Levi + + * elf32-crx.c (elf32_crx_relax_section): Support 'bcop' relaxation. + 2004-12-21 Kris Warkentin * elf.c (elfcore_grok_nto_gregs): Change name to elfcore_grok_nto_regs. diff --git a/bfd/elf32-crx.c b/bfd/elf32-crx.c index 548191e..de619ae 100644 --- a/bfd/elf32-crx.c +++ b/bfd/elf32-crx.c @@ -1183,7 +1183,9 @@ elf32_crx_relax_section (bfd *abfd, asection *sec, /* Verify it's a 'cmp&branch' opcode. */ if ((code & 0xfff0) != 0x3180 && (code & 0xfff0) != 0x3190 && (code & 0xfff0) != 0x31a0 && (code & 0xfff0) != 0x31c0 - && (code & 0xfff0) != 0x31d0 && (code & 0xfff0) != 0x31e0) + && (code & 0xfff0) != 0x31d0 && (code & 0xfff0) != 0x31e0 + /* Or a Co-processor branch ('bcop'). */ + && (code & 0xfff0) != 0x3010 && (code & 0xfff0) != 0x3110) continue; /* Note that we've changed the relocs, section contents, etc. */ -- cgit v1.1