mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-17 04:43:17 +08:00
* stabsread.c (update_method_name_from_physname): Call complaint()
instead of error.
This commit is contained in:
@ -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)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user