From 33d16dd987d16fe1eb289853e5a444192bb31d9e Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 30 Aug 2021 11:49:49 -0400 Subject: gdb: remove TYPE_FIELD_NAME and FIELD_NAME macros Remove the `TYPE_FIELD_NAME` and `FIELD_NAME` macros, changing all the call sites to use field::name directly. Change-Id: I6900ae4e1ffab1396e24fb3298e94bf123826ca6 --- gdb/go-lang.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/go-lang.c') diff --git a/gdb/go-lang.c b/gdb/go-lang.c index 2a4fb1a..72c5d88 100644 --- a/gdb/go-lang.c +++ b/gdb/go-lang.c @@ -82,9 +82,9 @@ gccgo_string_p (struct type *type) type1 = check_typedef (type1); if (type0->code () == TYPE_CODE_PTR - && strcmp (TYPE_FIELD_NAME (type, 0), "__data") == 0 + && strcmp (type->field (0).name (), "__data") == 0 && type1->code () == TYPE_CODE_INT - && strcmp (TYPE_FIELD_NAME (type, 1), "__length") == 0) + && strcmp (type->field (1).name (), "__length") == 0) { struct type *target_type = TYPE_TARGET_TYPE (type0); -- cgit v1.1