* stabsread.c (update_method_name_from_physname): Call complaint()

instead of error.
This commit is contained in:
Daniel Jacobowitz 2003-01-05 04:59:28 +00:00
parent b4e9345dbe
commit c263362b61
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
* stabsread.c (update_method_name_from_physname): Call complaint()
instead of error.
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
* arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.

View file

@ -2985,7 +2985,11 @@ update_method_name_from_physname (char **old_name, char *physname)
method_name = method_name_from_physname (physname);
if (method_name == NULL)
error ("bad physname %s\n", physname);
{
complaint (&symfile_complaints,
"Method has bad physname %s\n", physname);
return;
}
if (strcmp (*old_name, method_name) != 0)
{