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 933721ed0c Automatic date update in version.in adds a9f172c6b7 Set dwarf2_per_cu_data::m_header_read_in adds 0280fdcc08 Minor tweak to use die_reader_specs::abfd adds 7c290a04a2 Use cu_header consistently in read_attribute_value adds e838b3ca21 Automatic date update in version.in adds ba6a0ef349 gdb: use make_scoped_restore to restore gdbpy_current_objfile adds c68b1842bd ld: don't chance overrunning PE .reloc section content adds 8d624a9d80 gdb/fortran: Fix quad floating-point type for Intel compilers. adds 1996d0f12c Add a symbols-only mode to nm. adds 207582c075 Fix bug in Ada aggregate assignment adds 1ac7452264 Fix Ada assignment resolution adds 9863c3b5fc Fix regression in Ada ptype adds c04da66c26 Implement Ada operator overloading adds 3b5c4de0cf Call ada_ensure_varsize_limit in indirection adds 6813ceb03f Fix unary + in Ada adds eb5dd73748 gdb: remove dw2_get_file_names_reader's info_ptr parameter adds 850ed749b4 gdb: add logging to dwarf2_initialize_objfile adds 4800761a71 gdb: remove spurious colon in create_debug_type_hash_table d [...] adds 675da9a57e Fix GDB build with GCC 4.8.2 new 4ef6d2f424 Automatic date update in version.in new 80d49d6a1b RISC-V : Support bitmanip-0.93 ZBA/ZBB/ZBC instructions
The 2 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: bfd/ChangeLog | 4 + bfd/elfxx-riscv.c | 2 +- bfd/version.h | 2 +- binutils/ChangeLog | 17 +++ binutils/NEWS | 4 + binutils/doc/binutils.texi | 45 ++++-- binutils/nm.c | 109 ++++++++++--- gas/ChangeLog | 9 ++ gas/config/tc-riscv.c | 13 ++ gas/testsuite/gas/riscv/b-ext-64.d | 48 ++++++ gas/testsuite/gas/riscv/b-ext-64.s | 39 +++++ gas/testsuite/gas/riscv/b-ext.d | 35 +++++ gas/testsuite/gas/riscv/b-ext.s | 26 ++++ gdb/ChangeLog | 79 ++++++++++ gdb/ada-exp.h | 9 +- gdb/ada-exp.y | 169 ++++++++++++++++----- gdb/ada-lang.c | 22 +-- gdb/dwarf2/read.c | 48 +++--- gdb/i386-tdep.c | 5 +- gdb/python/python.c | 10 +- gdb/rust-exp.y | 4 +- gdb/stap-probe.c | 4 +- gdb/testsuite/ChangeLog | 41 +++++ gdb/testsuite/gdb.ada/assign_arr.exp | 7 + gdb/testsuite/gdb.ada/assign_arr/main_p324_051.adb | 2 + .../{target_wrapper.ads => target_wrapper.adb} | 18 ++- .../gdb.ada/assign_arr/target_wrapper.ads | 8 + .../gdb.ada/{assign_arr.exp => enums_overload.exp} | 20 +-- .../enums_overload.adb} | 30 ++-- .../enums_overload.ads} | 15 +- .../enums_overload_main.adb} | 11 +- gdb/testsuite/gdb.ada/fixed_points.exp | 5 + gdb/testsuite/gdb.ada/operator_call.exp | 115 ++++++++++++++ .../main_p324_051.adb => operator_call/opcall.adb} | 14 +- gdb/testsuite/gdb.ada/operator_call/twovecs.adb | 133 ++++++++++++++++ gdb/testsuite/gdb.ada/operator_call/twovecs.ads | 55 +++++++ gdb/testsuite/gdb.ada/varsize_limit.exp | 2 +- gdb/testsuite/gdb.ada/varsize_limit/vsizelim.adb | 14 ++ .../gdb.python/py-auto-load-chaining-f1.c | 24 +++ .../py-auto-load-chaining-f1.o-gdb.py} | 30 ++-- .../gdb.python/py-auto-load-chaining-f2.c | 24 +++ .../py-auto-load-chaining-f2.o-gdb.py} | 30 +--- gdb/testsuite/gdb.python/py-auto-load-chaining.c | 58 +++++++ gdb/testsuite/gdb.python/py-auto-load-chaining.exp | 78 ++++++++++ include/ChangeLog | 5 + include/opcode/riscv-opc.h | 104 +++++++++++++ include/opcode/riscv.h | 3 + ld/ChangeLog | 4 + ld/pe-dll.c | 3 - opcodes/ChangeLog | 4 + opcodes/riscv-opc.c | 53 ++++++- 51 files changed, 1410 insertions(+), 203 deletions(-) create mode 100644 gas/testsuite/gas/riscv/b-ext-64.d create mode 100644 gas/testsuite/gas/riscv/b-ext-64.s create mode 100644 gas/testsuite/gas/riscv/b-ext.d create mode 100644 gas/testsuite/gas/riscv/b-ext.s copy gdb/testsuite/gdb.ada/assign_arr/{target_wrapper.ads => target_wrapper.adb} (71%) copy gdb/testsuite/gdb.ada/{assign_arr.exp => enums_overload.exp} (63%) copy gdb/testsuite/gdb.ada/{assign_arr/target_wrapper.ads => enums_overload/enums_ [...] copy gdb/testsuite/gdb.ada/{assign_arr/main_p324_051.adb => enums_overload/enums_o [...] copy gdb/testsuite/gdb.ada/{assign_arr/main_p324_051.adb => enums_overload/enums_o [...] create mode 100644 gdb/testsuite/gdb.ada/operator_call.exp copy gdb/testsuite/gdb.ada/{assign_arr/main_p324_051.adb => operator_call/opcall.a [...] create mode 100644 gdb/testsuite/gdb.ada/operator_call/twovecs.adb create mode 100644 gdb/testsuite/gdb.ada/operator_call/twovecs.ads create mode 100644 gdb/testsuite/gdb.python/py-auto-load-chaining-f1.c copy gdb/testsuite/{gdb.ada/assign_arr.exp => gdb.python/py-auto-load-chaining-f1. [...] create mode 100644 gdb/testsuite/gdb.python/py-auto-load-chaining-f2.c copy gdb/testsuite/{gdb.ada/varsize_limit.exp => gdb.python/py-auto-load-chaining- [...] create mode 100644 gdb/testsuite/gdb.python/py-auto-load-chaining.c create mode 100644 gdb/testsuite/gdb.python/py-auto-load-chaining.exp