diff options
author | Matthieu Longo <matthieu.longo@arm.com> | 2024-06-07 16:59:57 +0100 |
---|---|---|
committer | Matthieu Longo <matthieu.longo@arm.com> | 2024-11-08 11:35:46 +0000 |
commit | f0af85dc9e393cfbebd9361b07bd1c9f12162896 (patch) | |
tree | 9990532bcfbe7389283aca076def70ecaee48094 /include | |
parent | dbca1bef47fb51531dddee7271fd651a7bc6c986 (diff) | |
download | binutils-f0af85dc9e393cfbebd9361b07bd1c9f12162896.zip binutils-f0af85dc9e393cfbebd9361b07bd1c9f12162896.tar.gz binutils-f0af85dc9e393cfbebd9361b07bd1c9f12162896.tar.bz2 |
aarch64: make comment clearer about the location
The enum aarch64_opnd_qualifiers in include/opcode/aarch64.h needs to
stay in sync with the array of struct operand_qualifier_data which
defines various properties for the different type of operands. For
instance, for:
- registers: the size of the register, the number of elements.
- immediates: lower and upper bits to determine the range of values.
Diffstat (limited to 'include')
-rw-r--r-- | include/opcode/aarch64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h index bc779c9..2858e2a 100644 --- a/include/opcode/aarch64.h +++ b/include/opcode/aarch64.h @@ -899,7 +899,8 @@ enum aarch64_opnd /* Qualifier constrains an operand. It either specifies a variant of an operand type or limits values available to an operand type. - N.B. Order is important; keep aarch64_opnd_qualifiers synced. */ + N.B. Order is important. + Keep aarch64_opnd_qualifiers (opcodes/aarch64-opc.c) synced. */ enum aarch64_opnd_qualifier { |