aboutsummaryrefslogtreecommitdiff
path: root/include/coff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2007-11-04 23:49:09 +0000
committerDanny Smith <dannysmith@users.sourceforge.net>2007-11-04 23:49:09 +0000
commit11ec4ba97796b1bdfc68b034ce3f719af81c3e48 (patch)
tree915761ca29d546532e04c61bb0b54b2caa9a0f1b /include/coff
parent4c9b8248edefb916b9d4265ecdcde15a2bb688b9 (diff)
downloadgdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.zip
gdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.tar.gz
gdb-11ec4ba97796b1bdfc68b034ce3f719af81c3e48.tar.bz2
include
* coff/pe.h (COFF_ENCODE_ALIGNMENT) Define. gas * read.c (ALIGN_LIMIT): Rename to ... (TC_ALIGN_LIMIT): Guard against prior definition. * config/tc-i386.h (TC_ALIGN_LIMIT)[TE_PE]: Define. bfd * pe-i386.c (COFF_SECTION_ALIGNMENT_ENTRIES): Let .data, .text and .bss section use the default. * pei-i386.c (COFF_SECTION_ALIGNMENT_ENTRIES): Likewise. ld/testsuite * ld-scripts/align.exp: Enable for PECOFF. * ld-scripts/alignof.exp: Likewise.
Diffstat (limited to 'include/coff')
-rw-r--r--include/coff/pe.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/coff/pe.h b/include/coff/pe.h
index 5a4d960..734b11a 100644
--- a/include/coff/pe.h
+++ b/include/coff/pe.h
@@ -90,6 +90,10 @@
#define IMAGE_SCN_ALIGN_4096BYTES IMAGE_SCN_ALIGN_POWER_CONST (12)
#define IMAGE_SCN_ALIGN_8192BYTES IMAGE_SCN_ALIGN_POWER_CONST (13)
+/* Encode alignment power into IMAGE_SCN_ALIGN bits of s_flags */
+#define COFF_ENCODE_ALIGNMENT(SECTION, ALIGNMENT_POWER) \
+ ((SECTION).s_flags |= IMAGE_SCN_ALIGN_POWER_CONST ((ALIGNMENT_POWER)))
+
#define IMAGE_SCN_LNK_NRELOC_OVFL 0x01000000 /* Section contains extended relocations. */
#define IMAGE_SCN_MEM_NOT_CACHED 0x04000000 /* Section is not cachable. */
#define IMAGE_SCN_MEM_NOT_PAGED 0x08000000 /* Section is not pageable. */