X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=bfd%2Felfxx-ia64.c;h=d8c4b5761b852f1bc39a3f1a2a48b7a43287458a;hb=e7f0a167643f8b3bc72321be3656fa8e35f9e4e6;hp=6f0c06e0ab4c93567a8f2cdf8d5e340b8516d98a;hpb=2a79e10f2b06049910f33b685e98b614ba2463f8;p=deliverable%2Fbinutils-gdb.git diff --git a/bfd/elfxx-ia64.c b/bfd/elfxx-ia64.c index 6f0c06e0ab..d8c4b5761b 100644 --- a/bfd/elfxx-ia64.c +++ b/bfd/elfxx-ia64.c @@ -943,6 +943,19 @@ elfNN_ia64_relax_section (abfd, sec, link_info, again) { bfd_signed_vma offset; + /* We can't put a trampoline in a .init/.fini section. Issue + an error. */ + if (strcmp (sec->output_section->name, ".init") == 0 + || strcmp (sec->output_section->name, ".fini") == 0) + { + (*_bfd_error_handler) + (_("%s: Can't relax br at 0x%lx in section `%s'. Please use brl or indirect branch."), + bfd_archive_filename (sec->owner), + (unsigned long) roff, sec->name); + bfd_set_error (bfd_error_bad_value); + goto error_return; + } + reladdr = (sec->output_section->vma + sec->output_offset + roff) & (bfd_vma) -4;