aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2001-11-20 15:19:39 +0000
committerAlan Modra <amodra@gmail.com>2001-11-20 15:19:39 +0000
commitca0b584738aaf9f36d8d19b850e4231188c5bf8e (patch)
tree4c21270be93365be4ee3c4c9bf62b58849db885e /ld
parenta6567fe028018267ef5f68a3de470aef87bb9ee6 (diff)
downloadgdb-ca0b584738aaf9f36d8d19b850e4231188c5bf8e.zip
gdb-ca0b584738aaf9f36d8d19b850e4231188c5bf8e.tar.gz
gdb-ca0b584738aaf9f36d8d19b850e4231188c5bf8e.tar.bz2
* emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
of false when calling lang_size_sections. (hppaelf_layout_sections_again): Likewise.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog6
-rw-r--r--ld/emultempl/elf32.em2
-rw-r--r--ld/emultempl/hppaelf.em2
3 files changed, 8 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 4af4d6d..28be9d6 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2001-11-20 Angela Marie Thomas <angela@redhat.com>
+
+ * emultempl/elf32.em (gld${EMULATION_NAME}_finish): Use NULL instead
+ of false when calling lang_size_sections.
+ (hppaelf_layout_sections_again): Likewise.
+
2001-11-15 Alan Modra <amodra@bigpond.net.au>
* emultempl/elf32.em (gld${EMULATION_NAME}_finish): Only emit this
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em
index 3acc8fa..9974b24 100644
--- a/ld/emultempl/elf32.em
+++ b/ld/emultempl/elf32.em
@@ -1333,7 +1333,7 @@ gld${EMULATION_NAME}_finish ()
{
/* Resize the sections. */
lang_size_sections (stat_ptr->head, abs_output_section,
- &stat_ptr->head, 0, (bfd_vma) 0, false);
+ &stat_ptr->head, 0, (bfd_vma) 0, NULL);
/* Redo special stuff. */
ldemul_after_allocation ();
diff --git a/ld/emultempl/hppaelf.em b/ld/emultempl/hppaelf.em
index 80965015..c8bd188 100644
--- a/ld/emultempl/hppaelf.em
+++ b/ld/emultempl/hppaelf.em
@@ -228,7 +228,7 @@ hppaelf_layout_sections_again ()
/* Resize the sections. */
lang_size_sections (stat_ptr->head, abs_output_section,
- &stat_ptr->head, 0, (bfd_vma) 0, false);
+ &stat_ptr->head, 0, (bfd_vma) 0, NULL);
/* Redo special stuff. */
ldemul_after_allocation ();