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/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/eval.c') diff --git a/gdb/eval.c b/gdb/eval.c index bfab6d8..8fe9318 100644 --- a/gdb/eval.c +++ b/gdb/eval.c @@ -2298,7 +2298,7 @@ array_operation::evaluate_struct_tuple (struct value *struct_val, error (_("too many initializers")); field_type = struct_type->field (fieldno).type (); if (field_type->code () == TYPE_CODE_UNION - && TYPE_FIELD_NAME (struct_type, fieldno)[0] == '0') + && struct_type->field (fieldno).name ()[0] == '0') error (_("don't know which variant you want to set")); /* Here, struct_type is the type of the inner struct, -- cgit v1.1