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-arm-lts-allnoconfig in repository toolchain/binutils-gdb.
from 1b2ed39c3a Fix potential buffer overrun whilst scanning macro strings. adds 48c5e7e239 Use upper case for more metasyntactic variables in gdb adds 2ee73c7abf Automatic date update in version.in adds 2eab46b176 GDB crash re-running program on Windows (native) adds 59581069b4 RX: include - Add RXv3 support. adds 6a25bee8d0 RX: gas - Add RXv3 instruction support. adds c8c89dac38 RX: bfd - Add RXv3 support. adds f87673e04f RX: binutils - Add RXv3 support. adds d2adf9f120 Remove the exception and cleanup checkers
No new revisions were added by this update.
Summary of changes: bfd/ChangeLog | 7 + bfd/archures.c | 2 + bfd/bfd-in2.h | 2 + bfd/cpu-rx.c | 30 ++++ bfd/elf32-rx.c | 7 +- bfd/version.h | 2 +- binutils/ChangeLog | 3 + binutils/readelf.c | 2 + gas/ChangeLog | 72 +++++++++ gas/config/rx-defs.h | 6 +- gas/config/rx-parse.y | 325 +++++++++++++++++++++++++++++++++----- gas/config/tc-rx.c | 57 +++++-- gas/doc/c-rx.texi | 8 +- gas/testsuite/gas/rx/Xtod.d | 20 +++ gas/testsuite/gas/rx/Xtod.sm | 3 + gas/testsuite/gas/rx/bfmov.d | 72 +++++++++ gas/testsuite/gas/rx/bfmov.sm | 2 + gas/testsuite/gas/rx/dabs.d | 13 ++ gas/testsuite/gas/rx/dabs.sm | 1 + gas/testsuite/gas/rx/dadd.d | 17 ++ gas/testsuite/gas/rx/dadd.sm | 1 + gas/testsuite/gas/rx/dcmp.d | 24 +++ gas/testsuite/gas/rx/dcmp.sm | 4 + gas/testsuite/gas/rx/ddiv.d | 16 ++ gas/testsuite/gas/rx/ddiv.sm | 1 + gas/testsuite/gas/rx/dmov.d | 76 +++++++++ gas/testsuite/gas/rx/dmov.sm | 13 ++ gas/testsuite/gas/rx/dmul.d | 16 ++ gas/testsuite/gas/rx/dmul.sm | 1 + gas/testsuite/gas/rx/dneg.d | 12 ++ gas/testsuite/gas/rx/dneg.sm | 1 + gas/testsuite/gas/rx/dpopm.d | 16 ++ gas/testsuite/gas/rx/dpopm.sm | 2 + gas/testsuite/gas/rx/dpushm.d | 16 ++ gas/testsuite/gas/rx/dpushm.sm | 2 + gas/testsuite/gas/rx/dround.d | 12 ++ gas/testsuite/gas/rx/dround.sm | 1 + gas/testsuite/gas/rx/dsqrt.d | 12 ++ gas/testsuite/gas/rx/dsqrt.sm | 1 + gas/testsuite/gas/rx/dsub.d | 16 ++ gas/testsuite/gas/rx/dsub.sm | 1 + gas/testsuite/gas/rx/dtoX.d | 20 +++ gas/testsuite/gas/rx/dtoX.sm | 3 + gas/testsuite/gas/rx/macros.inc | 10 +- gas/testsuite/gas/rx/mvfdc.d | 16 ++ gas/testsuite/gas/rx/mvfdc.sm | 1 + gas/testsuite/gas/rx/mvfdr.d | 9 ++ gas/testsuite/gas/rx/mvfdr.sm | 1 + gas/testsuite/gas/rx/mvtdc.d | 17 ++ gas/testsuite/gas/rx/mvtdc.sm | 1 + gas/testsuite/gas/rx/rstr.d | 12 ++ gas/testsuite/gas/rx/rstr.sm | 2 + gas/testsuite/gas/rx/rx.exp | 4 +- gas/testsuite/gas/rx/save.d | 12 ++ gas/testsuite/gas/rx/save.sm | 2 + gas/testsuite/gas/rx/xor.d | 8 + gas/testsuite/gas/rx/xor.sm | 2 + gdb/ChangeLog | 34 ++++ gdb/ax-gdb.c | 4 +- gdb/compile/compile.c | 2 +- gdb/contrib/cleanup_check.py | 335 ---------------------------------------- gdb/contrib/excheck.py | 296 ----------------------------------- gdb/contrib/exsummary.py | 185 ---------------------- gdb/contrib/gcc-with-excheck | 58 ------- gdb/demangle.c | 4 +- gdb/psymtab.c | 4 +- gdb/symmisc.c | 6 +- gdb/thread.c | 10 +- gdb/windows-nat.c | 21 +-- include/ChangeLog | 9 ++ include/elf/rx.h | 3 +- include/opcode/rx.h | 32 ++++ 72 files changed, 1057 insertions(+), 961 deletions(-) create mode 100644 gas/testsuite/gas/rx/Xtod.d create mode 100644 gas/testsuite/gas/rx/Xtod.sm create mode 100644 gas/testsuite/gas/rx/bfmov.d create mode 100644 gas/testsuite/gas/rx/bfmov.sm create mode 100644 gas/testsuite/gas/rx/dabs.d create mode 100644 gas/testsuite/gas/rx/dabs.sm create mode 100644 gas/testsuite/gas/rx/dadd.d create mode 100644 gas/testsuite/gas/rx/dadd.sm create mode 100644 gas/testsuite/gas/rx/dcmp.d create mode 100644 gas/testsuite/gas/rx/dcmp.sm create mode 100644 gas/testsuite/gas/rx/ddiv.d create mode 100644 gas/testsuite/gas/rx/ddiv.sm create mode 100644 gas/testsuite/gas/rx/dmov.d create mode 100644 gas/testsuite/gas/rx/dmov.sm create mode 100644 gas/testsuite/gas/rx/dmul.d create mode 100644 gas/testsuite/gas/rx/dmul.sm create mode 100644 gas/testsuite/gas/rx/dneg.d create mode 100644 gas/testsuite/gas/rx/dneg.sm create mode 100644 gas/testsuite/gas/rx/dpopm.d create mode 100644 gas/testsuite/gas/rx/dpopm.sm create mode 100644 gas/testsuite/gas/rx/dpushm.d create mode 100644 gas/testsuite/gas/rx/dpushm.sm create mode 100644 gas/testsuite/gas/rx/dround.d create mode 100644 gas/testsuite/gas/rx/dround.sm create mode 100644 gas/testsuite/gas/rx/dsqrt.d create mode 100644 gas/testsuite/gas/rx/dsqrt.sm create mode 100644 gas/testsuite/gas/rx/dsub.d create mode 100644 gas/testsuite/gas/rx/dsub.sm create mode 100644 gas/testsuite/gas/rx/dtoX.d create mode 100644 gas/testsuite/gas/rx/dtoX.sm create mode 100644 gas/testsuite/gas/rx/mvfdc.d create mode 100644 gas/testsuite/gas/rx/mvfdc.sm create mode 100644 gas/testsuite/gas/rx/mvfdr.d create mode 100644 gas/testsuite/gas/rx/mvfdr.sm create mode 100644 gas/testsuite/gas/rx/mvtdc.d create mode 100644 gas/testsuite/gas/rx/mvtdc.sm create mode 100644 gas/testsuite/gas/rx/rstr.d create mode 100644 gas/testsuite/gas/rx/rstr.sm create mode 100644 gas/testsuite/gas/rx/save.d create mode 100644 gas/testsuite/gas/rx/save.sm delete mode 100644 gdb/contrib/cleanup_check.py delete mode 100644 gdb/contrib/excheck.py delete mode 100644 gdb/contrib/exsummary.py delete mode 100755 gdb/contrib/gcc-with-excheck