diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:08:03 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2020-09-14 11:08:03 -0400 |
commit | bd63c870088388fc55efbf50f2dfc0592fe874e5 (patch) | |
tree | fc002e3c53ff9e8ae8a194b83cc9c87c5292d448 /gdb/reggroups.c | |
parent | 2062087b358cc5320d52b32c50866dbd08fb2631 (diff) | |
download | binutils-gdb-bd63c870088388fc55efbf50f2dfc0592fe874e5.tar.gz |
gdb: remove TYPE_VECTOR
gdb/ChangeLog:
* gdbtypes.h (TYPE_VECTOR): Remove, replace all
uses with type::is_vector.
Change-Id: I1ac28755af44b1585c190553f9961288c8fb9137
Diffstat (limited to 'gdb/reggroups.c')
-rw-r--r-- | gdb/reggroups.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/reggroups.c b/gdb/reggroups.c index 83d7b49e330..c092c9c30b9 100644 --- a/gdb/reggroups.c +++ b/gdb/reggroups.c @@ -201,7 +201,7 @@ default_register_reggroup_p (struct gdbarch *gdbarch, int regnum, return 0; if (group == all_reggroup) return 1; - vector_p = TYPE_VECTOR (register_type (gdbarch, regnum)); + vector_p = register_type (gdbarch, regnum)->is_vector (); float_p = (register_type (gdbarch, regnum)->code () == TYPE_CODE_FLT || (register_type (gdbarch, regnum)->code () == TYPE_CODE_DECFLOAT)); |