From 27e69b7aedcfee8af8fc6ee4f2e99aca2d41daca Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Mon, 14 Sep 2020 11:08:00 -0400 Subject: gdb: add type::is_prototyped / type::set_is_prototyped Add the `is_prototyped` and `set_is_prototyped` methods on `struct type`, in order to remove the `TYPE_PROTOTYPED` macro. In this patch, the macro is changed to use the getter, so all the call sites of the macro that are used as a setter are changed to use the setter method directly. The next patch will remove the macro completely. gdb/ChangeLog: * gdbtypes.h (struct type) : New methods. (TYPE_PROTOTYPED): Use type::is_prototyped, change all write call sites to use type::set_is_prototyped. Change-Id: I6ba285250fae413f7c1bf2ffcb5a2cedc8e743da --- gdb/dwarf2/read.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/dwarf2') diff --git a/gdb/dwarf2/read.c b/gdb/dwarf2/read.c index 5f02acc..f4f3a02 100644 --- a/gdb/dwarf2/read.c +++ b/gdb/dwarf2/read.c @@ -17665,7 +17665,7 @@ read_subroutine_type (struct die_info *die, struct dwarf2_cu *cu) ftype = lookup_function_type (type); if (prototyped_function_p (die, cu)) - TYPE_PROTOTYPED (ftype) = 1; + ftype->set_is_prototyped (true); /* Store the calling convention in the type if it's available in the subroutine die. Otherwise set the calling convention to -- cgit v1.1