AArch64: Use info-> instead of inst.base.operands[i].
Use the `info` pointer instead of the longer `inst.base.operands[i]` to access operand information in `parse_operands`.
The AArch64 assembler’s parse_operands function uses a pointer info to reference inst.base.operands[i]. This commit replaces instances of inst.base.operands[i]. with the shorter info-> where possible, improving code readability and maintainability.
In Details
The AArch64 assembler's parse_operands function in gas/config/tc-aarch64.c uses info as a pointer to inst.base.operands[i]. This commit simplifies the code by consistently using the info pointer, which enhances readability without altering functionality.
For Context
The GNU Assembler (GAS) translates assembly code into machine code. During the parsing of AArch64 assembly instructions, the code accesses operand information. This commit replaces a longer, more verbose way of accessing this information with a shorter, equivalent form, making the code easier to read and understand.