* scripttempl/go32coff.sc: Don't put ${DATA_ALIGNMENT} inside an
ALIGN.
This commit is contained in:
parent
686739e2c6
commit
62a4b36c6b
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
Wed Jun 22 13:42:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
|
||||
|
||||
* scripttempl/go32coff.sc: Don't put ${DATA_ALIGNMENT} inside an
|
||||
ALIGN.
|
||||
|
||||
* ldlang.c (lang_size_sections): Adjust current region address
|
||||
even for sections with an explicit address. From
|
||||
ralphc@pyramid.com (Ralph Campbell).
|
||||
|
|
|
@ -14,7 +14,7 @@ SECTIONS
|
|||
*(.text)
|
||||
${RELOCATING+ etext = .};
|
||||
}
|
||||
.data ${RELOCATING+ ALIGN(${DATA_ALIGNMENT})} : {
|
||||
.data ${RELOCATING+ ${DATA_ALIGNMENT}} : {
|
||||
${RELOCATING+ *(.ctor)}
|
||||
${RELOCATING+ *(.dtor)}
|
||||
*(.data)
|
||||
|
|
Loading…
Reference in a new issue