]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commit
gdb: add type::code / type::set_code
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 14 May 2020 17:45:40 +0000 (13:45 -0400)
committerSimon Marchi <simon.marchi@efficios.com>
Thu, 14 May 2020 17:45:40 +0000 (13:45 -0400)
commit67607e24d0413828acdfa9bc38f6fbac40b860b9
tree244fb4d92616ef31b9b22197d5a90df09e0147b2
parent02eba61aa6cad683e96cf13f483adc04982c0c2b
gdb: add type::code / type::set_code

Add the code and set_code methods on code, in order to remove the
TYPE_CODE macro.  In this patch, the TYPE_CODE macro is changed to use
type::code, so all the call sites that are used to set the type code are
changed to use type::set_code.  The next patch will remove TYPE_CODE
completely.

gdb/ChangeLog:

* gdbtypes.h (struct type) <code, set_code>: New methods.
(TYPE_CODE): Use type::code.  Change all call sites used to set
the code to use type::set_code instead.
12 files changed:
gdb/ChangeLog
gdb/ada-lang.c
gdb/coffread.c
gdb/ctfread.c
gdb/dwarf2/read.c
gdb/eval.c
gdb/gdbtypes.c
gdb/gdbtypes.h
gdb/mdebugread.c
gdb/rust-lang.c
gdb/stabsread.c
gdb/valops.c