Module Name: src
Committed By: matt
Date: Tue Dec 23 19:03:25 UTC 2014
Modified Files:
src/sys/arch/macppc/stand/fixcoff: elf32_powerpc_merge.x
Log Message:
Make sure .data/.bss ends/starts on a 4 byte boundary.
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x
diff -u src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x:1.2 src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x:1.3
--- src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x:1.2 Fri Dec 26 19:59:31 2003
+++ src/sys/arch/macppc/stand/fixcoff/elf32_powerpc_merge.x Tue Dec 23 19:03:25 2014
@@ -50,6 +50,7 @@ SECTIONS
*(.dynamic)
CONSTRUCTORS
}
+ . = ALIGN(4);
_edata = .;
PROVIDE (edata = .);
__bss_start = .;