mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-11 08:05:35 +08:00
2003-04-06 Andrew Cagney <cagney@redhat.com>
* valprint.c (val_print_type_code_int): Delete #ifdef PRINT_TYPELESS_INTEGER code.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2003-04-06 Andrew Cagney <cagney@redhat.com>
|
2003-04-06 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* valprint.c (val_print_type_code_int): Delete #ifdef
|
||||||
|
PRINT_TYPELESS_INTEGER code.
|
||||||
|
|
||||||
* gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
|
* gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
|
||||||
(CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
|
(CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
|
||||||
multi-arch definition.
|
multi-arch definition.
|
||||||
|
@ -205,12 +205,8 @@ val_print_type_code_int (struct type *type, char *valaddr,
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef PRINT_TYPELESS_INTEGER
|
|
||||||
PRINT_TYPELESS_INTEGER (stream, type, unpack_long (type, valaddr));
|
|
||||||
#else
|
|
||||||
print_longest (stream, TYPE_UNSIGNED (type) ? 'u' : 'd', 0,
|
print_longest (stream, TYPE_UNSIGNED (type) ? 'u' : 'd', 0,
|
||||||
unpack_long (type, valaddr));
|
unpack_long (type, valaddr));
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user