aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1997-02-24 18:13:23 +0000
committerJeff Law <law@redhat.com>1997-02-24 18:13:23 +0000
commitaf2903b4f0e07af9c1209352ce9d82b407266b70 (patch)
treeae49f5644691ac88b879688512a8ad43ac23ddd5 /bfd
parent16aef5b049941bfb4df913153c2c9adc89872106 (diff)
downloadgdb-af2903b4f0e07af9c1209352ce9d82b407266b70.zip
gdb-af2903b4f0e07af9c1209352ce9d82b407266b70.tar.gz
gdb-af2903b4f0e07af9c1209352ce9d82b407266b70.tar.bz2
Update some comments to reflect current reality.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/elf32-mn10200.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/bfd/elf32-mn10200.c b/bfd/elf32-mn10200.c
index 4d1e1af..6f3e64f 100644
--- a/bfd/elf32-mn10200.c
+++ b/bfd/elf32-mn10200.c
@@ -494,20 +494,20 @@ mn10200_elf_relocate_section (output_bfd, info, input_bfd, input_section,
and change its target to the jump's target. The jump/bra
can then be deleted. 2 bytes
- - mov abs24 -> mov abs16 2 byte savings
+ * mov abs24 -> mov abs16 2 byte savings
- - Most instructions which accept imm24 can relax to imm16 2 bytes
+ * Most instructions which accept imm24 can relax to imm16 2 bytes
- Most instructions which accept imm16 can relax to imm8 1 byte
- - Most instructions which accept d24 can relax to d16 2 bytes
+ * Most instructions which accept d24 can relax to d16 2 bytes
- Most instructions which accept d16 can relax to d8 1 byte
abs24, imm24, d24 all look the same at the reloc level. It
might make the code simpler if we had different relocs for
the various relaxable operand types.
- A '*' indicates a case this code can handle. */
-
+ We don't handle imm16->imm8 or d16->d8 as they're very rare
+ and somewhat more difficult to support. */
static boolean
mn10200_elf_relax_section (abfd, sec, link_info, again)