mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-05-29 15:18:34 +08:00
* p-typeprint.c (pascal_type_print_method_args): Fix problem in
display of type of method arguments.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-10-16 Pierre Muller <muller@ics.u-strasbg.fr>
|
||||||
|
|
||||||
|
* p-typeprint.c (pascal_type_print_method_args): Fix problem in
|
||||||
|
display of type of method arguments.
|
||||||
|
|
||||||
2010-10-15 Tom Tromey <tromey@redhat.com>
|
2010-10-15 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
PR python/11948:
|
PR python/11948:
|
||||||
|
@ -165,14 +165,15 @@ pascal_type_print_method_args (char *physname, char *methodname,
|
|||||||
|
|
||||||
if (physname && (*physname != 0))
|
if (physname && (*physname != 0))
|
||||||
{
|
{
|
||||||
int i = 0;
|
|
||||||
int len = 0;
|
|
||||||
char storec;
|
|
||||||
char *argname;
|
|
||||||
fputs_filtered (" (", stream);
|
fputs_filtered (" (", stream);
|
||||||
/* we must demangle this */
|
/* we must demangle this */
|
||||||
while (isdigit (physname[0]))
|
while (isdigit (physname[0]))
|
||||||
{
|
{
|
||||||
|
int len = 0;
|
||||||
|
int i;
|
||||||
|
char storec;
|
||||||
|
char *argname;
|
||||||
|
|
||||||
while (isdigit (physname[len]))
|
while (isdigit (physname[len]))
|
||||||
{
|
{
|
||||||
len++;
|
len++;
|
||||||
|
Reference in New Issue
Block a user