https://sourceware.org/bugzilla/show_bug.cgi?id=31561

--- Comment #1 from Sourceware Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jens Remus <jre...@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=6f3cf71845e68409724aef1cfef3b5a44beecf53

commit 6f3cf71845e68409724aef1cfef3b5a44beecf53
Author: Jens Remus <jre...@linux.ibm.com>
Date:   Tue Apr 9 17:21:53 2024 +0200

    aarch64: Treat operand "SME list of ZA tiles" as immediate (PR 31561)

    The AArch64 instruction table (aarch64-tbl.h) defines the operand
    "SME list of ZA tiles" (SME_list_of_64bit_tiles) as immediate. During
    assembly it is correctly encoded as immediate value (imm.value) in
    parse_operands. During disassembly it is first correctly decoded as
    immediate value (imm.value) in aarch64_ext_imm called by
    aarch64_extract_operand, but then erroneously treated as register
    number (reg.regno) in aarch64_print_operand.

    This resolves the assembler test case "SME extension (ZERO)" to
    erroneously fail on s390. On AArch64 - being little-endian - the struct
    aarch64_opnd_info union fields reg.regno and imm.value share their
    least-significant bits. On s390 - being big-endian - they do not.

    opcodes/
            PR binutils/31561
            * aarch64-opc.c: Treat operand "SME list of ZA tiles" as
            immediate.

    Bug: https://sourceware.org/PR31561
    Signed-off-by: Jens Remus <jre...@linux.ibm.com>
    Acked-by: Nick Clifton <ni...@redhat.com>

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Reply via email to