Line 1... |
Line 1... |
/* Lattice Mico32-specific support for 32-bit ELF
|
/* Lattice Mico32-specific support for 32-bit ELF
|
Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
|
Copyright 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
|
Contributed by Jon Beniston <jon@beniston.com>
|
Contributed by Jon Beniston <jon@beniston.com>
|
|
|
This file is part of BFD, the Binary File Descriptor library.
|
This file is part of BFD, the Binary File Descriptor library.
|
|
|
This program is free software; you can redistribute it and/or modify
|
This program is free software; you can redistribute it and/or modify
|
Line 1916... |
Line 1916... |
struct elf_lm32_dyn_relocs *p;
|
struct elf_lm32_dyn_relocs *p;
|
|
|
if (h->root.type == bfd_link_hash_indirect)
|
if (h->root.type == bfd_link_hash_indirect)
|
return TRUE;
|
return TRUE;
|
|
|
if (h->root.type == bfd_link_hash_warning)
|
|
/* When warning symbols are created, they **replace** the "real"
|
|
entry in the hash table, thus we never get to see the real
|
|
symbol in a hash traversal. So look at it now. */
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
info = (struct bfd_link_info *) inf;
|
info = (struct bfd_link_info *) inf;
|
htab = lm32_elf_hash_table (info);
|
htab = lm32_elf_hash_table (info);
|
if (htab == NULL)
|
if (htab == NULL)
|
return FALSE;
|
return FALSE;
|
|
|
Line 2108... |
Line 2102... |
readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf)
|
readonly_dynrelocs (struct elf_link_hash_entry *h, void * inf)
|
{
|
{
|
struct elf_lm32_link_hash_entry *eh;
|
struct elf_lm32_link_hash_entry *eh;
|
struct elf_lm32_dyn_relocs *p;
|
struct elf_lm32_dyn_relocs *p;
|
|
|
if (h->root.type == bfd_link_hash_warning)
|
|
h = (struct elf_link_hash_entry *) h->root.u.i.link;
|
|
|
|
eh = (struct elf_lm32_link_hash_entry *) h;
|
eh = (struct elf_lm32_link_hash_entry *) h;
|
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
for (p = eh->dyn_relocs; p != NULL; p = p->next)
|
{
|
{
|
asection *s = p->sec->output_section;
|
asection *s = p->sec->output_section;
|
|
|