Read 2 byte (16 bit addresses) when needed.

This commit is contained in:
Andrew Cagney 2000-02-29 05:10:04 +00:00
parent 33ee05bca2
commit 244106e863
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Feb 29 15:14:56 2000 Andrew Cagney <cagney@b1.cygnus.com>
From 2000-02-22 Stephane Carrez <stcarrez@worldnet.fr>:
* dwarf2read.c (read_address): Read 16-bits addresses.
2000-02-28 Scott Bambrough <scottb@netwinder.org>
* arm-linux-nat.c (fetch_nw_fpe_*):

View File

@ -3487,6 +3487,9 @@ read_address (abfd, buf)
switch (address_size)
{
case 2:
retval = bfd_get_16 (abfd, (bfd_byte *) buf);
break;
case 4:
retval = bfd_get_32 (abfd, (bfd_byte *) buf);
break;