This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-check_binutils in repository toolchain/ci/binutils-gdb.
from a8ab209320 RISC-V: compress "addi d,CV,z" to "c.mv d,CV" adds a21b96dd66 Update the ChangeLog, and add the missing entries. adds 768589d180 RISC-V: PR27436, make operand C> work the same as >. adds 6f8f6017a0 PR27567, Linking PE files adds alignment section flags to ex [...] adds 1b6b755e91 Print bfloat16 DWARF types correctly adds 100e914da3 aarch64: Define RME system registers adds 321d0cd7e7 gdb/testsuite: use -gdwarf-4 in simavr board adds 458620aabb Fix syntax error in Rust test adds 3cbc7ac344 Rewrite the Rust expression parser adds 1b348b6b67 Automatic date update in version.in adds e357e9904c Add block_search_flags adds df35e6262d Let expand_symtabs_matching short-circuit adds 03a8ea51c3 Add search_flags to expand_symtabs_matching adds 3bfa51a75f Add 'domain' parameter to expand_symtabs_matching adds 84d865e39c Remove quick_symbol_functions::lookup_symbol adds 536a40f3a8 Remove quick_symbol_functions::map_symtabs_matching_filename adds 7089bd886e Remove quick_symbol_functions::expand_symtabs_for_function adds 90160b5703 Remove quick_symbol_functions::expand_symtabs_with_fullname adds 0b7b2c2adf Simplify quick_symbol_functions::map_matching_symbols adds da314dd397 Avoid crash in write_psymtabs_to_index adds 42c2c69462 Handle unaligned mapping of .gdb_index adds 100cfce897 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 7 + bfd/coffcode.h | 16 +- bfd/version.h | 2 +- gas/ChangeLog | 27 +- gas/config/tc-riscv.c | 5 +- gas/testsuite/gas/aarch64/rme-invalid.d | 3 + gas/testsuite/gas/aarch64/rme-invalid.l | 2 + gas/testsuite/gas/aarch64/rme-invalid.s | 4 + gas/testsuite/gas/aarch64/rme.d | 14 + gas/testsuite/gas/aarch64/rme.s | 10 + gas/testsuite/gas/riscv/shamt-32.d | 3 + gas/testsuite/gas/riscv/shamt-32.l | 13 + gas/testsuite/gas/riscv/shamt-32.s | 31 + gas/testsuite/gas/riscv/shamt-64.d | 3 + gas/testsuite/gas/riscv/shamt-64.l | 7 + gas/testsuite/gas/riscv/shamt-64.s | 46 + gdb/ChangeLog | 233 ++ gdb/Makefile.in | 7 +- gdb/ada-lang.c | 43 +- gdb/arch-utils.c | 8 +- gdb/dwarf2/index-common.h | 21 +- gdb/dwarf2/index-write.c | 44 +- gdb/dwarf2/read.c | 699 ++---- gdb/linespec.c | 3 + gdb/objfiles.h | 40 +- gdb/psympriv.h | 22 +- gdb/psymtab.c | 269 +-- gdb/python/py-symbol.c | 4 +- gdb/quick-symbol.h | 88 +- gdb/rust-exp.y | 2884 ------------------------ gdb/rust-parse.c | 2351 +++++++++++++++++++ gdb/symfile-debug.c | 146 +- gdb/symfile.c | 16 +- gdb/symfile.h | 3 +- gdb/symmisc.c | 2 + gdb/symtab.c | 4 + gdb/testsuite/ChangeLog | 21 + gdb/testsuite/boards/simavr.exp | 4 + gdb/testsuite/gdb.dwarf2/dw2-bfloat16.exp | 82 + gdb/testsuite/gdb.dwarf2/gdb-index-nodebug.exp | 28 + gdb/testsuite/gdb.rust/expr.exp | 6 +- gdb/testsuite/gdb.rust/simple.exp | 4 +- include/ChangeLog | 12 + include/coff/internal.h | 2 +- include/coff/pe.h | 9 +- include/coff/ti.h | 5 +- include/coff/z80.h | 5 +- opcodes/ChangeLog | 9 + opcodes/aarch64-opc.c | 4 + 49 files changed, 3475 insertions(+), 3796 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/rme-invalid.d create mode 100644 gas/testsuite/gas/aarch64/rme-invalid.l create mode 100644 gas/testsuite/gas/aarch64/rme-invalid.s create mode 100644 gas/testsuite/gas/aarch64/rme.d create mode 100644 gas/testsuite/gas/aarch64/rme.s create mode 100644 gas/testsuite/gas/riscv/shamt-32.d create mode 100644 gas/testsuite/gas/riscv/shamt-32.l create mode 100644 gas/testsuite/gas/riscv/shamt-32.s create mode 100644 gas/testsuite/gas/riscv/shamt-64.d create mode 100644 gas/testsuite/gas/riscv/shamt-64.l create mode 100644 gas/testsuite/gas/riscv/shamt-64.s delete mode 100644 gdb/rust-exp.y create mode 100644 gdb/rust-parse.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-bfloat16.exp create mode 100644 gdb/testsuite/gdb.dwarf2/gdb-index-nodebug.exp