GCC warning fix: Add missing NULL initialiser for find_potential_libraries.

This commit is contained in:
Alan Modra 2000-02-29 05:53:53 +00:00
parent 244106e863
commit 40d109bfbc
16 changed files with 38 additions and 15 deletions

View File

@ -1,3 +1,11 @@
2000-02-29 Alan Modra <alan@spri.levels.unisa.edu.au>
* emultempl/{aix.em, armcoff.em, armelf.em, armelf_oabi.em,
beos.em, elf32.em, generic.em, gld960.em, gld960c.em, hppaelf.em,
linux.em, lnk960.em, mipsecoff.em, sunos.em, vanilla.em}
(ld_emulation_xfer_struct): Add missing NULL initialiser for
find_potential_libraries.
2000-02-28 Jim Blandy <jimb@redhat.com>
* ldgram.y (exclude_name_list): Don't require a comma to separate

View File

@ -1049,6 +1049,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
0, /* place_orphan */
0, /* set_symbols */
gld${EMULATION_NAME}_parse_args,
gld${EMULATION_NAME}_unrecognized_file
gld${EMULATION_NAME}_unrecognized_file,
NULL /* find_potential_libraries */
};
EOF

View File

@ -286,6 +286,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
gld${EMULATION_NAME}_parse_args,
NULL, /* unrecognised file */
gld${EMULATION_NAME}_list_options,
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -1287,6 +1287,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
gld${EMULATION_NAME}_parse_args,
NULL, /* unrecognized file */
gld${EMULATION_NAME}_list_options,
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -171,6 +171,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -835,6 +835,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
gld_${EMULATION_NAME}_parse_args,
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -1181,6 +1181,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
gld_${EMULATION_NAME}_parse_args,
NULL, /* unrecognized_file */
gld_${EMULATION_NAME}_list_options,
NULL /* recognized_file */
NULL, /* recognized_file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -122,6 +122,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -177,6 +177,7 @@ struct ld_emulation_xfer_struct ld_gld960_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -193,6 +193,7 @@ struct ld_emulation_xfer_struct ld_gld960coff_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -282,6 +282,7 @@ struct ld_emulation_xfer_struct ld_hppaelf_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -206,6 +206,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -329,6 +329,7 @@ struct ld_emulation_xfer_struct ld_lnk960_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -233,6 +233,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -1037,6 +1037,7 @@ struct ld_emulation_xfer_struct ld_${EMULATION_NAME}_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF

View File

@ -73,6 +73,7 @@ struct ld_emulation_xfer_struct ld_vanilla_emulation =
NULL, /* parse args */
NULL, /* unrecognized file */
NULL, /* list options */
NULL /* recognized file */
NULL, /* recognized file */
NULL /* find_potential_libraries */
};
EOF