diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2023-03-30 17:01:30 +0100 |
---|---|---|
committer | Richard Sandiford <richard.sandiford@arm.com> | 2023-03-30 17:01:30 +0100 |
commit | d056265349034444226c468cba561cc86eaed6da (patch) | |
tree | ffb5c6caca0536e6e95207551459b4f621dd96d1 /include | |
parent | 8ff429203dc8cb8c66fdd7db647e237330dcabd0 (diff) | |
download | gdb-d056265349034444226c468cba561cc86eaed6da.zip gdb-d056265349034444226c468cba561cc86eaed6da.tar.gz gdb-d056265349034444226c468cba561cc86eaed6da.tar.bz2 |
aarch64: Remove stray reglist variable
Sorry for not catching this during testing. I was using a
host compiler that predated the switch to -fno-common.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/aarch64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index 01c8ca1..2ba94fd 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -1210,7 +1210,7 @@ struct aarch64_reglist unsigned has_index : 1; /* Lane index; valid only when has_index is 1. */ int64_t index; -} reglist; +}; /* Structure representing an operand. */ |