Home
last modified time | relevance | path

Searched refs:tmp_reloc (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.27/bfd/
Dnlm32-sparc.c97 struct nlm32_sparc_reloc_ext tmp_reloc; in nlm_sparc_read_reloc() local
100 if (bfd_bread (&tmp_reloc, (bfd_size_type) 12, abfd) != 12) in nlm_sparc_read_reloc()
106 val = bfd_get_32 (abfd, tmp_reloc.offset); in nlm_sparc_read_reloc()
107 addend = bfd_get_32 (abfd, tmp_reloc.addend); in nlm_sparc_read_reloc()
108 type = bfd_get_8 (abfd, tmp_reloc.type); in nlm_sparc_read_reloc()
138 struct nlm32_sparc_reloc_ext tmp_reloc; in nlm_sparc_write_reloc() local
182 bfd_put_32 (abfd, val, tmp_reloc.offset); in nlm_sparc_write_reloc()
183 bfd_put_32 (abfd, rel->addend, tmp_reloc.addend); in nlm_sparc_write_reloc()
184 bfd_put_8 (abfd, (short) (rel->howto->type), tmp_reloc.type); in nlm_sparc_write_reloc()
186 if (bfd_bwrite (&tmp_reloc, (bfd_size_type) 12, abfd) != 12) in nlm_sparc_write_reloc()
DChangeLog-94955068 (som_write_fixups): Initalize tmp_reloc to NULL to make GCC happy.