* bfd/coff-rs6000.c (READ20): Use bfd_scan_vma.
This commit is contained in:
parent
435ad15963
commit
1dba4cb4ba
@ -1,3 +1,7 @@
|
|||||||
|
2002-01-07 Aldy Hernandez <aldyh@redhat.com>
|
||||||
|
|
||||||
|
* coff-rs6000.c (READ20): Use bfd_scan_vma.
|
||||||
|
|
||||||
2002-01-07 Geoffrey Keating <geoffk@redhat.com>
|
2002-01-07 Geoffrey Keating <geoffk@redhat.com>
|
||||||
|
|
||||||
* elflink.h (elf_link_input_bfd): Don't ask for the merged offset
|
* elflink.h (elf_link_input_bfd): Don't ask for the merged offset
|
||||||
|
@ -1555,7 +1555,7 @@ static char buff20[XCOFFARMAGBIG_ELEMENT_SIZE + 1];
|
|||||||
#define READ20(d, v) \
|
#define READ20(d, v) \
|
||||||
buff20[20] = 0, \
|
buff20[20] = 0, \
|
||||||
memcpy (buff20, (d), 20), \
|
memcpy (buff20, (d), 20), \
|
||||||
(v) = strtoull (buff20, (char **) NULL, 10)
|
(v) = bfd_scan_vma (buff20, (const char **) NULL, 10)
|
||||||
|
|
||||||
static boolean
|
static boolean
|
||||||
xcoff_write_armap_big (abfd, elength, map, orl_count, stridx)
|
xcoff_write_armap_big (abfd, elength, map, orl_count, stridx)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user