diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-05-16 12:16:06 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-05-16 12:36:05 -0400 |
commit | 7d93a1e0b6af703c75daa93456608f8bb5f34f13 (patch) | |
tree | 463f7922a76e4a9341095339498726b65be181db /gdb/go-lang.c | |
parent | d0e39ea27cde07011967ab74d39cf13dfe3370c4 (diff) | |
download | binutils-7d93a1e0b6af703c75daa93456608f8bb5f34f13.zip binutils-7d93a1e0b6af703c75daa93456608f8bb5f34f13.tar.gz binutils-7d93a1e0b6af703c75daa93456608f8bb5f34f13.tar.bz2 |
gdb: remove TYPE_NAME macro
Remove `TYPE_NAME`, changing all the call sites to use `type::name`
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_NAME): Remove. Change all cal sites to use
type::name instead.
Diffstat (limited to 'gdb/go-lang.c')
-rw-r--r-- | gdb/go-lang.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/go-lang.c b/gdb/go-lang.c index 373c12d..366ac36 100644 --- a/gdb/go-lang.c +++ b/gdb/go-lang.c @@ -92,7 +92,7 @@ gccgo_string_p (struct type *type) if (target_type->code () == TYPE_CODE_INT && TYPE_LENGTH (target_type) == 1 - && strcmp (TYPE_NAME (target_type), "uint8") == 0) + && strcmp (target_type->name (), "uint8") == 0) return 1; } } @@ -107,8 +107,8 @@ static int sixg_string_p (struct type *type) { if (TYPE_NFIELDS (type) == 2 - && TYPE_NAME (type) != NULL - && strcmp (TYPE_NAME (type), "string") == 0) + && type->name () != NULL + && strcmp (type->name (), "string") == 0) return 1; return 0; |