mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-16 20:32:21 +08:00
Extend test for circualr debug references.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2003-05-12 Salvador Eduardo Tropea <salvador@inti.gov.ar>
|
||||||
|
|
||||||
|
* debug.c (debug_get_real_type): Extend test for circular debug
|
||||||
|
references.
|
||||||
|
|
||||||
2003-05-12 Nick Clifton <nickc@redhat.com>
|
2003-05-12 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
* configure.in (ALL_LINGUAS): Add zh_CN.
|
* configure.in (ALL_LINGUAS): Add zh_CN.
|
||||||
|
@ -2183,7 +2183,7 @@ debug_get_real_type (handle, type, list)
|
|||||||
|
|
||||||
for (l = list; l != NULL; l = l->next)
|
for (l = list; l != NULL; l = l->next)
|
||||||
{
|
{
|
||||||
if (l->t == type)
|
if (l->t == type || l == l->next)
|
||||||
{
|
{
|
||||||
fprintf (stderr,
|
fprintf (stderr,
|
||||||
_("debug_get_real_type: circular debug information for %s\n"),
|
_("debug_get_real_type: circular debug information for %s\n"),
|
||||||
|
Reference in New Issue
Block a user