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.
This commit is contained in:
parent
02eba61aa6
commit
67607e24d0
12 changed files with 71 additions and 52 deletions
|
@ -981,7 +981,7 @@ rust_composite_type (struct type *original,
|
|||
if (field2 != NULL)
|
||||
++nfields;
|
||||
|
||||
TYPE_CODE (result) = TYPE_CODE_STRUCT;
|
||||
result->set_code (TYPE_CODE_STRUCT);
|
||||
TYPE_NAME (result) = name;
|
||||
|
||||
TYPE_NFIELDS (result) = nfields;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue