diff options
author | Alan Modra <amodra@gmail.com> | 2000-01-22 23:22:18 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-01-22 23:22:18 +0000 |
commit | e1c47aa42d359b3b54ecf3b9eb7eed8b81852302 (patch) | |
tree | 1ac70225758fbbbf8a770bc36c1c5bbc588a2af5 /ld/emultempl/sunos.em | |
parent | dfad2e408fb7e2c59baeabe60090fe182fb090dc (diff) | |
download | gdb-e1c47aa42d359b3b54ecf3b9eb7eed8b81852302.zip gdb-e1c47aa42d359b3b54ecf3b9eb7eed8b81852302.tar.gz gdb-e1c47aa42d359b3b54ecf3b9eb7eed8b81852302.tar.bz2 |
To satisfy latest CVS gcc:
* emultempl/*.em (ld_emulation_xfer_struct): Add missing NULL
initialisers, and comments.
* testsuite/ld-srec/sr3.cc (__rethrow): New.
Diffstat (limited to 'ld/emultempl/sunos.em')
-rw-r--r-- | ld/emultempl/sunos.em | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ld/emultempl/sunos.em b/ld/emultempl/sunos.em index 8f095fe..fa71ab0 100644 --- a/ld/emultempl/sunos.em +++ b/ld/emultempl/sunos.em @@ -1029,10 +1029,14 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation = gld${EMULATION_NAME}_get_script, "${EMULATION_NAME}", "${OUTPUT_FORMAT}", - NULL, /* finish */ + NULL, /* finish */ gld${EMULATION_NAME}_create_output_section_statements, - NULL, /* open_dynamic_library */ - NULL, /* place_orphan */ - gld${EMULATION_NAME}_set_symbols + NULL, /* open dynamic archive */ + NULL, /* place orphan */ + gld${EMULATION_NAME}_set_symbols, + NULL, /* parse args */ + NULL, /* unrecognized file */ + NULL, /* list options */ + NULL /* recognized file */ }; EOF |