From f77c4ce58e5f6bbad55237dbdc2f79bb3732c983 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Tue, 8 Nov 2011 15:07:17 +0000 Subject: * elf-m10300.c (mn10300_elf_relax_section): Fix check for an immediate move into an address register. --- bfd/elf-m10300.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bfd/elf-m10300.c') diff --git a/bfd/elf-m10300.c b/bfd/elf-m10300.c index c2dc5835ea..fa33b4a2fb 100644 --- a/bfd/elf-m10300.c +++ b/bfd/elf-m10300.c @@ -3604,8 +3604,8 @@ mn10300_elf_relax_section (bfd *abfd, && (value & 0x8000)) continue; - /* mov imm16, an zero-extends the immediate. */ - if (code == 0xdc + /* "mov imm16, an" zero-extends the immediate. */ + if ((code & 0xfc) == 0xdc && (long) value < 0) continue; -- cgit v1.2.1