This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-aarch64-next-allmodconfig in repository toolchain/ci/binutils-gdb.
from 0eb994e572 Automatic date update in version.in adds 2c947d9bc2 gdb/configure: Add --with-libgmp-prefix option adds 1b4ac058f7 gdb: Make GMP a required dependency for building GDB adds b34c74ab9a gmp-utils: New API to simply use of GMP's integer/rational/f [...] adds e55c6530db Move uinteger_pow gdb/valarith.c to gdb/utils.c and make it public adds 0958441403 Add support for printing value of DWARF-based fixed-point ty [...] adds b26daff97c fix printing of DWARF fixed-point type objects with format modifier adds 0c9150e4de Add ptype support for DWARF-based fixed-point types adds 0a12719e51 Add support for fixed-point type arithmetic adds b74dbc2093 Add support for fixed-point type comparison operators adds 5778e0dd5d Automatic date update in version.in adds 315d05eb3f ld: Fix the tls_ie-01 test for arc adds 10c9f4e584 Update the Spanish translation for the ld/ subdirectory. adds 2b3cb4006a Fix frame cycle detection adds 119e99bb7f Update gdb.dwarf2/data-loc.exp adds 1bbda94fe0 arm: Add support for Cortex-A78C adds e64441b14c aarch64: Extract Condition flag manipulation feature from Armv8.4-A adds 3f4ff0886f aarch64: Add +pauth flag for Pointer Authentication feature adds 0bfc584f66 Automatic date update in version.in
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 4 + bfd/cpu-arm.c | 1 + bfd/version.h | 2 +- gas/ChangeLog | 22 + gas/NEWS | 7 +- gas/config/tc-aarch64.c | 4 + gas/config/tc-arm.c | 3 + gas/doc/c-aarch64.texi | 8 + gas/doc/c-arm.texi | 1 + gas/testsuite/gas/aarch64/flagm.d | 16 + gas/testsuite/gas/aarch64/flagm.s | 16 + gas/testsuite/gas/aarch64/pac-feat.d | 74 + gas/testsuite/gas/aarch64/pac-feat.s | 79 + gas/testsuite/gas/arm/cpu-cortex-a78c.d | 6 + gdb/ChangeLog | 100 + gdb/Makefile.in | 8 +- gdb/ada-typeprint.c | 6 + gdb/ada-valprint.c | 3 + gdb/c-typeprint.c | 6 + gdb/config.in | 3 + gdb/configure | 491 +++ gdb/configure.ac | 8 + gdb/dwarf2/read.c | 211 ++ gdb/eval.c | 3 + gdb/frame.c | 27 +- gdb/gdb-gdb.py.in | 5 + gdb/gdbtypes.c | 133 +- gdb/gdbtypes.h | 53 +- gdb/gmp-utils.c | 172 + gdb/gmp-utils.h | 282 ++ gdb/inline-frame.c | 3 +- gdb/p-typeprint.c | 2 + gdb/printcmd.c | 3 +- gdb/testsuite/ChangeLog | 36 + gdb/testsuite/gdb.ada/fixed_cmp.exp | 34 +- gdb/testsuite/gdb.ada/fixed_points.exp | 47 + .../gdb.ada/fixed_points/fixed_points.adb | 4 + gdb/testsuite/gdb.ada/fixed_points/pck.adb | 22 + gdb/testsuite/gdb.ada/fixed_points/pck.ads | 30 + gdb/testsuite/gdb.dwarf2/data-loc.exp | 49 +- gdb/testsuite/gdb.dwarf2/dw2-fixed-point.c | 56 + gdb/testsuite/gdb.dwarf2/dw2-fixed-point.exp | 308 ++ gdb/typeprint.c | 12 + gdb/typeprint.h | 5 + gdb/unittests/gmp-utils-selftests.c | 460 +++ gdb/utils.c | 30 + gdb/utils.h | 7 + gdb/valarith.c | 137 +- gdb/valops.c | 74 +- gdb/valprint.c | 33 + gdb/value.c | 14 + include/ChangeLog | 6 + include/opcode/aarch64.h | 4 +- ld/ChangeLog | 8 + ld/po/es.po | 3808 +++++++++++--------- ld/testsuite/ld-arc/tls_ie-01.d | 11 +- opcodes/ChangeLog | 7 + opcodes/aarch64-tbl.h | 13 +- 58 files changed, 5076 insertions(+), 1901 deletions(-) create mode 100644 gas/testsuite/gas/aarch64/flagm.d create mode 100644 gas/testsuite/gas/aarch64/flagm.s create mode 100644 gas/testsuite/gas/aarch64/pac-feat.d create mode 100644 gas/testsuite/gas/aarch64/pac-feat.s create mode 100644 gas/testsuite/gas/arm/cpu-cortex-a78c.d create mode 100644 gdb/gmp-utils.c create mode 100644 gdb/gmp-utils.h create mode 100644 gdb/testsuite/gdb.ada/fixed_points/pck.adb create mode 100644 gdb/testsuite/gdb.ada/fixed_points/pck.ads create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-fixed-point.c create mode 100644 gdb/testsuite/gdb.dwarf2/dw2-fixed-point.exp create mode 100644 gdb/unittests/gmp-utils-selftests.c