* xcoffread.c: Make sure all struct complaints are static not auto.
Fri May 21 09:04:25 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
+ * complaint.c: Make sure all complain() pass the address of the struct.
+
+ * xcoffread.c: Make sure all struct complaints are static not auto.
+
+ * Makefile.in: Add rule for xcoffexec.o like that for paread.o.
+
* xcoffread.c (process_xcoff_symbol, case C_LSYM): Use define_symbol.
Wed May 19 12:33:59 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
goto normal;
default:
- complain (unrecognized_cplus_name_complaint, string);
+ complain (&unrecognized_cplus_name_complaint, string);
goto normal; /* Do *something* with it */
}
}
/* requires builtin `real' */
return lookup_fundamental_type (current_objfile, FT_FLOAT);
default:
- complain (rs6000_builtin_complaint, typenum);
+ complain (&rs6000_builtin_complaint, typenum);
return NULL;
}
}
}
}
/* Virtual function table field not found. */
- complain (vtbl_notfound_complaint, TYPE_NAME (type));
+ complain (&vtbl_notfound_complaint, TYPE_NAME (type));
return 0;
}
else
/* This can happen with old versions of GCC.
GCC 2.3.3-930426 does not exhibit this on a test case which
a user said produced the message for him. */
- struct complaint msg = {"Nested C_BINCL symbols", 0, 0};
+ static struct complaint msg = {"Nested C_BINCL symbols", 0, 0};
complain (&msg);
}
++inclDepth;
if (inclDepth == 0)
{
- struct complaint msg = {"Mismatched C_BINCL/C_EINCL pair", 0, 0};
+ static struct complaint msg = {"Mismatched C_BINCL/C_EINCL pair", 0, 0};
complain (&msg);
}
{
if (symno < 0 || symno >= symtbl_num_syms)
{
- struct complaint msg =
+ static struct complaint msg =
{"Invalid symbol offset", 0, 0};
complain (&msg);
symbol->n_value = 0;