opcodes i386 and ia64 gen file warnings
authorAlan Modra <amodra@gmail.com>
Sat, 26 Aug 2023 01:47:47 +0000 (11:17 +0930)
committerAlan Modra <amodra@gmail.com>
Sat, 26 Aug 2023 01:47:47 +0000 (11:17 +0930)
i386: warning: format ‘%u’ expects argument of type ‘unsigned int’,
but argument 4 has type ‘size_t’ {aka ‘long unsigned int’} [-Wformat=]
ia64: warning: ignoring return value of ‘fgets’

* i386-gen.c (process_i386_opcodes): Correct format string.
* ia64-gen.c (load_insn_classes, load_depfile): Don't ignore
fgets return value.

opcodes/i386-gen.c
opcodes/ia64-gen.c

index 30430a2f58a8eb15506bf3f0d9dcf437f553112c..c46d6a5e88dc74a6df53503570326f902d84b2c5 100644 (file)
@@ -1841,7 +1841,7 @@ process_i386_opcodes (FILE *table)
          fprintf (fp, "#define MN_%s ", str);
          free (str);
          str = mkident (next);
-         fprintf (fp, "(MN_%s + %u)\n", str, l1 - l);
+         fprintf (fp, "(MN_%s + %zu)\n", str, l1 - l);
        }
       else
        {
index ad91e77248e94fc05a776b0010cfaa3938203980..0118dd78757ce5a45249b7c8ccdd8d92daed62ac 100644 (file)
@@ -607,7 +607,8 @@ load_insn_classes (void)
     fail (_("can't find ia64-ic.tbl for reading\n"));
 
   /* Discard first line.  */
-  fgets (buf, sizeof(buf), fp);
+  if (fgets (buf, sizeof(buf), fp) == NULL)
+    return;
 
   while (!feof (fp))
     {
@@ -808,7 +809,8 @@ load_depfile (const char *filename, enum ia64_dependency_mode mode)
   if (fp == NULL)
     fail (_("can't find %s for reading\n"), filename);
 
-  fgets (buf, sizeof(buf), fp);
+  if (fgets (buf, sizeof(buf), fp) == NULL)
+    return;
   while (!feof (fp))
     {
       char *name, *tmp;