aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1994-02-05 12:00:15 +0000
committerDavid MacKenzie <djm@cygnus>1994-02-05 12:00:15 +0000
commit52a8ebfe04a89a747b014ab2eaa96968bc346360 (patch)
tree971aa46ee2d49a1e13a1baf73130ea3dd223dce2
parente3960b961029c8a5e0f46142a5734c78a5be8ff2 (diff)
downloadgdb-52a8ebfe04a89a747b014ab2eaa96968bc346360.zip
gdb-52a8ebfe04a89a747b014ab2eaa96968bc346360.tar.gz
gdb-52a8ebfe04a89a747b014ab2eaa96968bc346360.tar.bz2
* emultempl/lnk960.em (append), emultempl/hppaosf.em
(hppaosf_finish): Call xmalloc, not ldmalloc. * ldmain.c (preserve_output): Function removed. (main): Do it here instead.
-rw-r--r--ld/ChangeLog7
-rw-r--r--ld/emultempl/hppaosf.em6
-rw-r--r--ld/ldmain.c13
3 files changed, 16 insertions, 10 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 3ddaa41..c3f5c35 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,10 @@
+Sat Feb 5 03:54:34 1994 David J. Mackenzie (djm@thepub.cygnus.com)
+
+ * emultempl/lnk960.em (append), emultempl/hppaosf.em
+ (hppaosf_finish): Call xmalloc, not ldmalloc.
+ * ldmain.c (preserve_output): Function removed.
+ (main): Do it here instead.
+
Fri Feb 4 23:02:19 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
* ldlang.h (LANG_FOR_EACH_{INPUT,OUTPUT}_SECTION): Delete (unused)
diff --git a/ld/emultempl/hppaosf.em b/ld/emultempl/hppaosf.em
index fe98f4f..24b30e6 100644
--- a/ld/emultempl/hppaosf.em
+++ b/ld/emultempl/hppaosf.em
@@ -106,6 +106,11 @@ hppaosf_finish()
extern lang_statement_list_type file_chain;
lang_input_statement_type *statement;
+<<<<<<< hppaosf.em
+ stub_file->asymbols = xmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *));
+||||||| 1.7
+ stub_file->asymbols = ldmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *));
+=======
for (statement = (lang_input_statement_type *)file_chain.head;
statement != (lang_input_statement_type *)NULL;
statement = (lang_input_statement_type *)statement->next)
@@ -119,6 +124,7 @@ hppaosf_finish()
int new_sym_cnt = 0;
int i,j;
asymbol *syms;
+>>>>>>> 1.8
syms = hppa_look_for_stubs_in_section (stub_file->the_bfd,
abfd,
diff --git a/ld/ldmain.c b/ld/ldmain.c
index 43a20c2..f153ceb 100644
--- a/ld/ldmain.c
+++ b/ld/ldmain.c
@@ -144,15 +144,6 @@ remove_output ()
}
}
-/* Prevent remove_output from doing anything.
- Called after a successful link. */
-
-static void
-preserve_output ()
-{
- output_filename = NULL;
-}
-
int
main (argc, argv)
int argc;
@@ -323,7 +314,9 @@ main (argc, argv)
(long) (lim - (char *) &environ));
}
- atexit (preserve_output);
+ /* Prevent remove_output from doing anything, after a successful link. */
+ output_filename = NULL;
+
xexit (0);
return 0;
}