mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-15 20:08:23 +00:00
gdb: remove TYPE_CODE macro
Remove TYPE_CODE, changing all the call sites to use type::code directly. This is quite a big diff, but this was mostly done using sed and coccinelle. A few call sites were done by hand. gdb/ChangeLog: * gdbtypes.h (TYPE_CODE): Remove. Change all call sites to use type::code instead.
This commit is contained in:
@@ -37,7 +37,7 @@ get_ulongest (const char **pp, int trailer)
|
||||
|
||||
if (val != NULL) /* Value history reference */
|
||||
{
|
||||
if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
|
||||
if (value_type (val)->code () == TYPE_CODE_INT)
|
||||
retval = value_as_long (val);
|
||||
else
|
||||
error (_("History value must have integer type."));
|
||||
@@ -96,7 +96,7 @@ get_number_trailer (const char **pp, int trailer)
|
||||
|
||||
if (val) /* Value history reference */
|
||||
{
|
||||
if (TYPE_CODE (value_type (val)) == TYPE_CODE_INT)
|
||||
if (value_type (val)->code () == TYPE_CODE_INT)
|
||||
retval = value_as_long (val);
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user