This commit allows symbols defined with the .equ/.set directive to be used as shift/extend operands for AArch64. E.g.,
.set IMM2, 2 .equ IMM4, 4 add w1, w2, w3, uxtb #IMM2 add w4, w5, w6, uxth #IMM4
This addresses PR31431.
PTAL,
Chad
Differential D27953
[AArch64][AsmParser] Add support for parsing shift/extend operands with symbols. mcrosier on Dec 19 2016, 2:25 PM. Authored by
Details This commit allows symbols defined with the .equ/.set directive to be used as shift/extend operands for AArch64. E.g., .set IMM2, 2 .equ IMM4, 4 add w1, w2, w3, uxtb #IMM2 add w4, w5, w6, uxth #IMM4 This addresses PR31431. PTAL, Chad
Diff Detail
Event TimelineComment Actions LGTM.
|