* stabsread.c (update_method_name_from_physname): Call complaint()
instead of error.
This commit is contained in:
parent
b4e9345dbe
commit
c263362b61
2 changed files with 10 additions and 1 deletions
|
@ -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>
|
2003-01-04 Daniel Jacobowitz <drow@mvista.com>
|
||||||
|
|
||||||
* arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
|
* arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
|
||||||
|
|
|
@ -2985,7 +2985,11 @@ update_method_name_from_physname (char **old_name, char *physname)
|
||||||
method_name = method_name_from_physname (physname);
|
method_name = method_name_from_physname (physname);
|
||||||
|
|
||||||
if (method_name == NULL)
|
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)
|
if (strcmp (*old_name, method_name) != 0)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue