OSDN Git Service

GCC warning fix: Add missing NULL initialiser for find_potential_libraries.
authorAlan Modra <amodra@bigpond.net.au>
Tue, 29 Feb 2000 05:53:53 +0000 (05:53 +0000)
committerAlan Modra <amodra@bigpond.net.au>
Tue, 29 Feb 2000 05:53:53 +0000 (05:53 +0000)
16 files changed:
ld/ChangeLog
ld/emultempl/aix.em
ld/emultempl/armcoff.em
ld/emultempl/armelf.em
ld/emultempl/armelf_oabi.em
ld/emultempl/beos.em
ld/emultempl/elf32.em
ld/emultempl/generic.em
ld/emultempl/gld960.em
ld/emultempl/gld960c.em
ld/emultempl/hppaelf.em
ld/emultempl/linux.em
ld/emultempl/lnk960.em
ld/emultempl/mipsecoff.em
ld/emultempl/sunos.em
ld/emultempl/vanilla.em

index 5d40919..dae6ea9 100644 (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
index 6748af0..dd81b5f 100644 (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
index 79e1e80..d73b3d1 100644 (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
index f6d5ef4..9abf7f1 100644 (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
index aca71f7..d8ca87a 100644 (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
index 8bbdc0a..2c14fbc 100644 (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
index 78676e1..2913ecf 100644 (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
index 813238d..6635e09 100644 (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
index 62eddb1..ad8e5bf 100644 (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
index fe8d0b0..c7f1624 100644 (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
index dd3b264..fde4362 100644 (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
index 548eb80..dfa855e 100644 (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
index 9ab6b3f..a4c3257 100644 (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
index b47a9da..4c932a1 100644 (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
index fa71ab0..a571b6b 100644 (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
index d9076ca..0a74abd 100644 (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