From 93dfcdf0615003799ac0a3d90c3fbb6443d9d615 Mon Sep 17 00:00:00 2001 From: DJ Delorie Date: Tue, 25 May 1999 11:37:40 +0000 Subject: [PATCH] * 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. --- bfd/ChangeLog | 7 +++++++ bfd/peicode.h | 1 + 2 files changed, 8 insertions(+) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 3a76843..9dcc885 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,10 @@ +1999-05-25 DJ Delorie + + * 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. + 1999-05-24 Philip Blundell * elf32-arm.h (elf32_arm_relocate_section): Undo change of 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 } -- 2.7.4