aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2000-02-28 03:55:16 +0000
committerIan Lance Taylor <ian@airs.com>2000-02-28 03:55:16 +0000
commit4eee26817d477635365de84831d4d907e7d4ded3 (patch)
tree38da26be34db257f8836e750f6d22c7e7fd7ce8b /ld
parenta25fe90645fc60bdf4bc75febd628754f8c6acde (diff)
downloadgdb-4eee26817d477635365de84831d4d907e7d4ded3.zip
gdb-4eee26817d477635365de84831d4d907e7d4ded3.tar.gz
gdb-4eee26817d477635365de84831d4d907e7d4ded3.tar.bz2
2000-02-27 Mark Elbrecht <snowball3@bigfoot.com>
* scripttempl/i386go32.sc: Move misplaced semicolons.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/scripttempl/i386go32.sc6
2 files changed, 7 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index c276a01..1c72e90 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -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.
diff --git a/ld/scripttempl/i386go32.sc b/ld/scripttempl/i386go32.sc
index 0d97fd3..f14aff7 100644
--- a/ld/scripttempl/i386go32.sc
+++ b/ld/scripttempl/i386go32.sc
@@ -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});}
}
}