diff options
author | David MacKenzie <djm@cygnus> | 1994-02-06 01:05:54 +0000 |
---|---|---|
committer | David MacKenzie <djm@cygnus> | 1994-02-06 01:05:54 +0000 |
commit | 744b2885b4b90bc3abee5fc94ca676b853507659 (patch) | |
tree | 678b5ca6d4cc402a802f465ef603305dabb33371 /ld/emultempl | |
parent | 021b10e345a1f57758dc522d90e52340a82f71fa (diff) | |
download | gdb-744b2885b4b90bc3abee5fc94ca676b853507659.zip gdb-744b2885b4b90bc3abee5fc94ca676b853507659.tar.gz gdb-744b2885b4b90bc3abee5fc94ca676b853507659.tar.bz2 |
remove cvs lossage
Diffstat (limited to 'ld/emultempl')
-rw-r--r-- | ld/emultempl/hppaosf.em | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ld/emultempl/hppaosf.em b/ld/emultempl/hppaosf.em index 24b30e6..cb01a32 100644 --- a/ld/emultempl/hppaosf.em +++ b/ld/emultempl/hppaosf.em @@ -106,11 +106,6 @@ 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) @@ -124,7 +119,6 @@ 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, @@ -140,7 +134,7 @@ hppaosf_finish() old_asymbols = stub_file->asymbols; - stub_file->asymbols = ldmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *)); + stub_file->asymbols = xmalloc((stub_file->symbol_count + new_sym_cnt) * sizeof(asymbol *)); for ( j = 0; j < stub_file->symbol_count; j++ ) stub_file->asymbols[j] = old_asymbols[j]; |