diff options
author | Keith Seitz <keiths@redhat.com> | 2022-09-12 07:56:58 -0700 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2022-09-29 10:00:13 -0700 |
commit | ee8cc2b3f2d121718165b1cab2f537bbf30cae89 (patch) | |
tree | 86f8ae09684d0b1ea916cf6562e4c1baea98fd2c /gdb/features/arm | |
parent | 55b0ce4403e29e5c5295bc26024281c62e10ca3c (diff) | |
download | gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.zip gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.tar.gz gdb-ee8cc2b3f2d121718165b1cab2f537bbf30cae89.tar.bz2 |
cleanup: Add missing feature/ XML files to Makefile
This patch adds some missing .xml files to features/Makefile so that when the
directory's C files are regenerated, all files are appropriately remade.
This has demonstrated that there have been several "misses" in regenerating
files in this directory. Namely, arm-secext.c and sparc{32,64}-solaris.c. For
the former case, there was what essentially amounts to a typo regarding the
create feature function's name. In the later case, this file has missed at least
one important update in July, 2020, when allocate_target_description was
changed to return a unique pointer.
Those corrections are included.
Diffstat (limited to 'gdb/features/arm')
-rw-r--r-- | gdb/features/arm/arm-secext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/features/arm/arm-secext.c b/gdb/features/arm/arm-secext.c index 39ef4af..c71cffd 100644 --- a/gdb/features/arm/arm-secext.c +++ b/gdb/features/arm/arm-secext.c @@ -4,7 +4,7 @@ #include "gdbsupport/tdesc.h" static int -create_feature_arm_arm_m_system (struct target_desc *result, long regnum) +create_feature_arm_arm_secext (struct target_desc *result, long regnum) { struct tdesc_feature *feature; |