diff options
author | Bernd Schmidt <bernds@codesourcery.com> | 2011-04-11 12:04:22 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@codesourcery.com> | 2011-04-11 12:04:22 +0000 |
commit | 2123f9ad1580a90d71edd99fba6ccd32c46189ef (patch) | |
tree | d67bbf8f16c02047659f953fec7e474f1790996e /bfd | |
parent | 4e4f7c872bc46d8b26ebe03a61536620de7bcdea (diff) | |
download | gdb-2123f9ad1580a90d71edd99fba6ccd32c46189ef.zip gdb-2123f9ad1580a90d71edd99fba6ccd32c46189ef.tar.gz gdb-2123f9ad1580a90d71edd99fba6ccd32c46189ef.tar.bz2 |
* elf32-tic6x.c (elf32_tic6x_check_relocs): Initialize pc_count field.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 4 | ||||
-rw-r--r-- | bfd/elf32-tic6x.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ae399e6..5a28cb4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2011-04-11 Bernd Schmidt <bernds@codesourcery.com> + + * elf32-tic6x.c (elf32_tic6x_check_relocs): Initialize pc_count field. + 2011-04-11 Mark Wielaard <mjw@redhat.com> PR 10549 diff --git a/bfd/elf32-tic6x.c b/bfd/elf32-tic6x.c index b0474a6..b898aab 100644 --- a/bfd/elf32-tic6x.c +++ b/bfd/elf32-tic6x.c @@ -2772,6 +2772,7 @@ elf32_tic6x_check_relocs (bfd *abfd, struct bfd_link_info *info, *head = p; p->sec = sec; p->count = 0; + p->pc_count = 0; } p->count += 1; |