diff options
author | DJ Delorie <dj@redhat.com> | 1999-05-25 11:37:40 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 1999-05-25 11:37:40 +0000 |
commit | 93dfcdf0615003799ac0a3d90c3fbb6443d9d615 (patch) | |
tree | 080fd0d174ddc7c95ab3966b781f24ab9b2fa00b /bfd/peicode.h | |
parent | e1b283bbb7a3ff7364c7100bf7ac975155d16121 (diff) | |
download | gdb-93dfcdf0615003799ac0a3d90c3fbb6443d9d615.zip gdb-93dfcdf0615003799ac0a3d90c3fbb6443d9d615.tar.gz gdb-93dfcdf0615003799ac0a3d90c3fbb6443d9d615.tar.bz2 |
* peicode.h (coff_swap_sym_in): When we create the actual section
to reflect the not-there section C_SECTION symbols refer to,
change the symbol class to C_STAT as the section is now really
there.
Diffstat (limited to 'bfd/peicode.h')
-rw-r--r-- | bfd/peicode.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bfd/peicode.h b/bfd/peicode.h index f15e0ec..be47bca 100644 --- a/bfd/peicode.h +++ b/bfd/peicode.h @@ -567,6 +567,7 @@ coff_swap_sym_in (abfd, ext1, in1) in->n_scnum = unused_section_number; } + in->n_sclass = C_STAT; #endif } |