mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-14 12:40:58 +08:00
remove cvs lossage
This commit is contained in:
@ -106,11 +106,6 @@ hppaosf_finish()
|
|||||||
extern lang_statement_list_type file_chain;
|
extern lang_statement_list_type file_chain;
|
||||||
lang_input_statement_type *statement;
|
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;
|
for (statement = (lang_input_statement_type *)file_chain.head;
|
||||||
statement != (lang_input_statement_type *)NULL;
|
statement != (lang_input_statement_type *)NULL;
|
||||||
statement = (lang_input_statement_type *)statement->next)
|
statement = (lang_input_statement_type *)statement->next)
|
||||||
@ -124,7 +119,6 @@ hppaosf_finish()
|
|||||||
int new_sym_cnt = 0;
|
int new_sym_cnt = 0;
|
||||||
int i,j;
|
int i,j;
|
||||||
asymbol *syms;
|
asymbol *syms;
|
||||||
>>>>>>> 1.8
|
|
||||||
|
|
||||||
syms = hppa_look_for_stubs_in_section (stub_file->the_bfd,
|
syms = hppa_look_for_stubs_in_section (stub_file->the_bfd,
|
||||||
abfd,
|
abfd,
|
||||||
@ -140,7 +134,7 @@ hppaosf_finish()
|
|||||||
|
|
||||||
old_asymbols = stub_file->asymbols;
|
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++ )
|
for ( j = 0; j < stub_file->symbol_count; j++ )
|
||||||
stub_file->asymbols[j] = old_asymbols[j];
|
stub_file->asymbols[j] = old_asymbols[j];
|
||||||
|
Reference in New Issue
Block a user