aboutsummaryrefslogtreecommitdiff
path: root/gdb/mdebugread.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-09-14 11:08:00 -0400
committerSimon Marchi <simon.marchi@efficios.com>2020-09-14 11:08:00 -0400
commit27e69b7aedcfee8af8fc6ee4f2e99aca2d41daca (patch)
treed092d44a3e9cba662112047179bb295e5c5b3154 /gdb/mdebugread.c
parentd21839680655c071a811de1d7b41f8d7de4fc462 (diff)
downloadfsf-binutils-gdb-27e69b7aedcfee8af8fc6ee4f2e99aca2d41daca.zip
fsf-binutils-gdb-27e69b7aedcfee8af8fc6ee4f2e99aca2d41daca.tar.gz
fsf-binutils-gdb-27e69b7aedcfee8af8fc6ee4f2e99aca2d41daca.tar.bz2
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) <is_prototyped, set_is_prototyped>: New methods. (TYPE_PROTOTYPED): Use type::is_prototyped, change all write call sites to use type::set_is_prototyped. Change-Id: I6ba285250fae413f7c1bf2ffcb5a2cedc8e743da
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r--gdb/mdebugread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c
index f68f4ef..480b67b 100644
--- a/gdb/mdebugread.c
+++ b/gdb/mdebugread.c
@@ -786,7 +786,7 @@ parse_symbol (SYMR *sh, union aux_ext *ax, char *ext_sh, int bigend,
/* All functions in C++ have prototypes. For C we don't have enough
information in the debug info. */
if (s->language () == language_cplus)
- TYPE_PROTOTYPED (SYMBOL_TYPE (s)) = 1;
+ SYMBOL_TYPE (s)->set_is_prototyped (true);
/* Create and enter a new lexical context. */
b = new_block (FUNCTION_BLOCK, s->language ());