Landing: 26062e210a35

Project / Subsystem

binutils / binutils/aarch64

Date

2026-05-15

Author

Alice Carlotti <acarlotti@sourceware.org>

Commit

26062e210a35c91b5b20d330186b080d7fcc2b0c

Source

public_inbox

Perf win

No

Breaking

No

All attributes

project
binutils
subsystem
binutils/aarch64
patch_id
commit_hash
26062e210a35c91b5b20d330186b080d7fcc2b0c
source_type
public_inbox
headline
AArch64: Use info-> instead of inst.base.operands[i].
tldr
Use the `info` pointer instead of the longer `inst.base.operands[i]` to access operand information in `parse_operands`.
author
Alice Carlotti <acarlotti@sourceware.org>
outcome
committed
performance_win
false
breaking_change
false
series_id
series_parts
[]
tags
  • aarch64
  • assembler
  • refactor
discussion_id_link
bugzilla_pr
date
2026-05-15T00:00:00.000Z

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.