2001-02-14 H.J. Lu <hjl@gnu.org>

* libcoff-in.h (pe_tdata): Add members target_subsystem and
	force_minimum_alignment.
This commit is contained in:
H.J. Lu 2001-02-14 17:29:47 +00:00
parent 4b69c284e7
commit ea36a178b2
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-02-14 H.J. Lu <hjl@gnu.org>
* libcoff-in.h (pe_tdata): Add members target_subsystem and
force_minimum_alignment.
2001-02-14 Bo Thorsen <bo@suse.de> 2001-02-14 Bo Thorsen <bo@suse.de>
* elf64-x86-64.c: Small formatting fixes and rearrangements of code. * elf64-x86-64.c: Small formatting fixes and rearrangements of code.

View File

@ -1,5 +1,5 @@
/* BFD COFF object file private structure. /* BFD COFF object file private structure.
Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999 Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 98, 1999, 2001
Free Software Foundation, Inc. Free Software Foundation, Inc.
Written by Cygnus Support. Written by Cygnus Support.
@ -121,6 +121,8 @@ typedef struct pe_tdata
int has_reloc_section; int has_reloc_section;
boolean (*in_reloc_p) PARAMS((bfd *, reloc_howto_type *)); boolean (*in_reloc_p) PARAMS((bfd *, reloc_howto_type *));
flagword real_flags; flagword real_flags;
int target_subsystem;
boolean force_minimum_alignment;
} pe_data_type; } pe_data_type;
#define pe_data(bfd) ((bfd)->tdata.pe_obj_data) #define pe_data(bfd) ((bfd)->tdata.pe_obj_data)