This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository binutils-gdb.
from 3b9ff5d9009 gdb: add trailing '/' when using 'complete' with directory names new aef117b7374 gdb/python: hoist common invalid object repr code into py-utils.c new 1925bba80ed gdb/python: add gdb.InferiorThread.__repr__() method new d6defe8761c gdb/python: add gdb.Frame.__repr__() method new 2f47f48fe55 gdb/python: remove users ability to create gdb.Progspace objects new 13cd9bceea3 gdb/python: Add gdb.Inferior.__dict__ attribute new 1d586eda5c9 gdb/python: Add gdb.InferiorThread.__dict__ attribute new 53d0889088d gdb/doc: add some notes on selecting suitable attribute names new 7ccdf9c0fb4 gdb/doc: update examples in gdb.Progspace and gdb.Objfile docs new 79f1989e98b aarch64: Fix +lse feature flag dependency new c7c16ea5aed aarch64: Add +fcma alias for +compnum new c17c7aaf401 aarch64: Fix option parsing to disallow prefixes of valid options new 227af30e49d aarch64: Add +jscvt flag for existing fjcvtzs instruction new ce9fad9878a aarch64: Add +frintts flag for existing instructions new 5329ef9b8eb aarch64: Add +flagm2 flag for existing instructions new 368910707c6 aarch64: Add +rcpc2 flag for existing instructions new 59255bf7d20 aarch64: Add +wfxt flag for existing instructions new 43291582c0b aarch64: Add +xs flag for existing instructions new f6cfacfed1f aarch64: Make FEAT_ASMv8p2 instruction aliases always available new c3a1c2763df aarch64: Remove unused code
The 19 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gas/config/tc-aarch64.c | 14 ++- gas/testsuite/gas/aarch64/advsimd-compnum.d | 1 + gas/testsuite/gas/aarch64/alias-2.d | 2 +- gas/testsuite/gas/aarch64/armv8_4-a.d | 2 +- gas/testsuite/gas/aarch64/armv8_5-a-flagm2.d | 12 +++ gas/testsuite/gas/aarch64/armv8_5-a-flagm2.s | 3 + .../{armv8_5-a-dp.d => armv8_5-a-frintts.d} | 3 +- .../{armv8_5-a-dp.s => armv8_5-a-frintts.s} | 2 - gas/testsuite/gas/aarch64/fp-armv8_3.d | 1 + gas/testsuite/gas/aarch64/opt-invalid.d | 1 + gas/testsuite/gas/aarch64/opt-invalid.s | 1 + gas/testsuite/gas/aarch64/{armv8_4-a.d => rcpc2.d} | 119 +-------------------- gas/testsuite/gas/aarch64/{armv8_4-a.s => rcpc2.s} | 6 -- gas/testsuite/gas/aarch64/rdma.d | 1 + gas/testsuite/gas/aarch64/system-4.d | 8 ++ gas/testsuite/gas/aarch64/system-4.s | 12 +++ gas/testsuite/gas/aarch64/system-5.d | 62 +++++++++++ gas/testsuite/gas/aarch64/system-5.s | 70 ++++++++++++ gdb/NEWS | 13 +++ gdb/doc/python.texi | 111 +++++++++++++++++-- gdb/python/py-arch.c | 2 +- gdb/python/py-block.c | 2 +- gdb/python/py-breakpoint.c | 4 +- gdb/python/py-connection.c | 2 +- gdb/python/py-frame.c | 19 +++- gdb/python/py-inferior.c | 15 ++- gdb/python/py-infthread.c | 34 +++++- gdb/python/py-objfile.c | 2 +- gdb/python/py-progspace.c | 16 +-- gdb/python/py-symbol.c | 2 +- gdb/python/py-type.c | 3 +- gdb/python/py-unwind.c | 2 +- gdb/python/py-utils.c | 8 ++ gdb/python/python-internal.h | 13 +++ gdb/testsuite/gdb.python/py-frame.exp | 8 ++ gdb/testsuite/gdb.python/py-inferior.exp | 52 ++++++++- gdb/testsuite/gdb.python/py-infthread.exp | 3 +- gdb/testsuite/gdb.python/py-progspace.exp | 6 ++ include/opcode/aarch64.h | 14 ++- opcodes/aarch64-opc.c | 2 +- opcodes/aarch64-tbl.h | 92 +++++++--------- 41 files changed, 518 insertions(+), 227 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/armv8_5-a-flagm2.d create mode 100644 gas/testsuite/gas/aarch64/armv8_5-a-flagm2.s rename gas/testsuite/gas/aarch64/{armv8_5-a-dp.d => armv8_5-a-frintts.d} (94%) rename gas/testsuite/gas/aarch64/{armv8_5-a-dp.s => armv8_5-a-frintts.s} (94%) create mode 100644 gas/testsuite/gas/aarch64/opt-invalid.d create mode 100644 gas/testsuite/gas/aarch64/opt-invalid.s copy gas/testsuite/gas/aarch64/{armv8_4-a.d => rcpc2.d} (95%) copy gas/testsuite/gas/aarch64/{armv8_4-a.s => rcpc2.s} (97%)