diff options
author | Alan Modra <amodra@bigpond.net.au> | 2003-12-04 12:08:42 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2003-12-04 12:08:42 +0000 |
commit | 663176cb8c6af2452d2c6502c034479214780c35 (patch) | |
tree | 87423a187c5269e039df9b6b945dc7d0aec8b4ca /bfd/elf-m10300.c | |
parent | 5fb929d640aa8f268a679d3cae7281ea8bbc4a4e (diff) | |
download | gdb-663176cb8c6af2452d2c6502c034479214780c35.tar.gz |
* coff-i860.c (coff_i860_reloc_nyi): Return bfd_reloc_not_supported.
* elf-m10300.c (elf32_mn10300_finish_hash_table_entry): Warning fixes.
(mn10300_elf_relax_section): Likewise.
* nlm32-alpha.c (ONES): Define.
(nlm32_alpha_howto_table): Use it to avoid warnings.
Diffstat (limited to 'bfd/elf-m10300.c')
-rw-r--r-- | bfd/elf-m10300.c | 35 |
1 files changed, 21 insertions, 14 deletions
diff --git a/bfd/elf-m10300.c b/bfd/elf-m10300.c index aa8fd0dd289..f628e760bd5 100644 --- a/bfd/elf-m10300.c +++ b/bfd/elf-m10300.c @@ -1743,10 +1743,13 @@ elf32_mn10300_finish_hash_table_entry (gen_entry, in_args) byte_count += 2; /* Count the insn to allocate stack space too. */ - if (entry->stack_size > 0 && entry->stack_size <= 128) - byte_count += 3; - else if (entry->stack_size > 0 && entry->stack_size < 256) - byte_count += 4; + if (entry->stack_size > 0) + { + if (entry->stack_size <= 128) + byte_count += 3; + else + byte_count += 4; + } /* If using "call" will result in larger code, then turn all the associated "call" instructions into "calls" instructions. */ @@ -2238,11 +2241,13 @@ mn10300_elf_relax_section (abfd, sec, link_info, again) if (sym_hash->movm_args) bytes += 2; - if (sym_hash->stack_size && sym_hash->stack_size <= 128) - bytes += 3; - else if (sym_hash->stack_size - && sym_hash->stack_size < 256) - bytes += 4; + if (sym_hash->stack_size > 0) + { + if (sym_hash->stack_size <= 128) + bytes += 3; + else + bytes += 4; + } /* Note that we've deleted prologue bytes for this function. */ @@ -2290,11 +2295,13 @@ mn10300_elf_relax_section (abfd, sec, link_info, again) if (sym_hash->movm_args) bytes += 2; - if (sym_hash->stack_size && sym_hash->stack_size <= 128) - bytes += 3; - else if (sym_hash->stack_size - && sym_hash->stack_size < 256) - bytes += 4; + if (sym_hash->stack_size > 0) + { + if (sym_hash->stack_size <= 128) + bytes += 3; + else + bytes += 4; + } /* Note that we've deleted prologue bytes for this function. */ |