diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-01-28 10:09:02 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-01-28 10:09:02 -0500 |
commit | 6ac373717c28cc2befebd1e926dc5fcf39dda39f (patch) | |
tree | 56a4b7f247510cc9a5b087722b0fd034f06ee0d0 /gdb/parse.c | |
parent | cc3edc52747fd8b184ee48f1b0cc1ac0aca7832e (diff) | |
download | binutils-gdb-6ac373717c28cc2befebd1e926dc5fcf39dda39f.tar.gz |
gdb: rename type::{arch,objfile} -> type::{arch_owner,objfile_owner}
I think this makes the names of the methods clearer, especially for the
arch. The type::arch method (which gets the arch owner, or NULL if the
type is not arch owned) is easily confused with the get_type_arch method
(which returns an arch no matter what). The name "arch_owner" will make
it intuitive that the method returns NULL if the type is not arch-owned.
Also, this frees the type::arch name, so we will be able to morph the
get_type_arch function into the type::arch method.
gdb/ChangeLog:
* gdbtypes.h (struct type) <arch>: Rename to...
<arch_owner>: ... this, update all users.
<objfile>: Rename to...
<objfile_owner>: ... this, update all users.
Change-Id: Ie7c28684c7b565adec05a7619c418c69429bd8c0
Diffstat (limited to 'gdb/parse.c')
-rw-r--r-- | gdb/parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/parse.c b/gdb/parse.c index 7fd520493ac..933960fa30c 100644 --- a/gdb/parse.c +++ b/gdb/parse.c @@ -1320,7 +1320,7 @@ operator_check_standard (struct expression *exp, int pos, for (arg = 0; arg < nargs; arg++) { struct type *inst_type = elts[pos + 3 + arg].type; - struct objfile *inst_objfile = inst_type->objfile (); + struct objfile *inst_objfile = inst_type->objfile_owner (); if (inst_objfile && (*objfile_func) (inst_objfile, data)) return 1; @@ -1351,8 +1351,8 @@ operator_check_standard (struct expression *exp, int pos, /* Invoke callbacks for TYPE and OBJFILE if they were set as non-NULL. */ - if (type != nullptr && type->objfile () != nullptr - && objfile_func (type->objfile (), data)) + if (type != nullptr && type->objfile_owner () != nullptr + && objfile_func (type->objfile_owner (), data)) return 1; if (objfile && (*objfile_func) (objfile, data)) |