2000-02-27 Mark Elbrecht <snowball3@bigfoot.com>

* scripttempl/i386go32.sc: Move misplaced semicolons.
This commit is contained in:
Ian Lance Taylor 2000-02-28 03:55:16 +00:00
parent a25fe90645
commit 4eee26817d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2000-02-27 Mark Elbrecht <snowball3@bigfoot.com>
* scripttempl/i386go32.sc: Move misplaced semicolons.
2000-02-25 Ian Lance Taylor <ian@zembu.com>
* Makefile.am (ALL_EMULATIONS): Remove ehppaelf.o.

View File

@ -21,7 +21,7 @@ SECTIONS
*(.const*)
*(.ro*)
${RELOCATING+*(.gnu.linkonce.r*)}
${RELOCATING+etext = . ; _etext = .};
${RELOCATING+etext = . ; _etext = . ;}
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
}
.data ${RELOCATING+ ${DATA_ALIGNMENT}} : {
@ -40,7 +40,7 @@ SECTIONS
${RELOCATING+LONG(0);}
${RELOCATING+*(.gnu.linkonce.d*)}
${RELOCATING+edata = . ; _edata = .};
${RELOCATING+edata = . ; _edata = . ;}
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
}
${CONSTRUCTING+${RELOCATING-$CTOR}}
@ -49,7 +49,7 @@ SECTIONS
{
*(.bss)
*(COMMON)
${RELOCATING+ end = . ; _end = .};
${RELOCATING+ end = . ; _end = . ;}
${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});}
}
}