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 a7ea089b0bc Automatic date update in version.in new 30dbbdc55a7 LoongArch: Add gas testsuit for alias instructions new 10b6919c1fe LoongArch: Add gas testsuit for lbt/lvz instructions new f35f0ceddfe LoongArch: Add gas testsuit for lsx/lasx instructions new 95616510b61 LoongArch: Add gas testsuit for LA64 int/float instructions new 0c7cde4d9a3 LoongArch: Add gas testsuit for LA32 int/float instructions new 4cde4ce70ae LoongArch: Add gas testsuit for LA64 relocations new 533c24e1679 LoongArch: Add gas testsuit for LA32 relocations
The 7 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/testsuite/gas/loongarch/insn_alias_32.d | 19 + gas/testsuite/gas/loongarch/insn_alias_32.s | 10 + gas/testsuite/gas/loongarch/insn_alias_64.d | 20 + gas/testsuite/gas/loongarch/insn_alias_64.s | 11 + gas/testsuite/gas/loongarch/insn_float32.d | 157 +++++ gas/testsuite/gas/loongarch/insn_float32.s | 149 +++++ gas/testsuite/gas/loongarch/insn_float64.d | 165 +++++ gas/testsuite/gas/loongarch/insn_float64.s | 157 +++++ gas/testsuite/gas/loongarch/insn_int32.d | 147 ++++ gas/testsuite/gas/loongarch/insn_int32.s | 156 +++++ gas/testsuite/gas/loongarch/insn_int64.d | 430 ++++++++++++ gas/testsuite/gas/loongarch/insn_int64.s | 440 ++++++++++++ gas/testsuite/gas/loongarch/insn_lasx.d | 737 ++++++++++++++++++++ .../gas/loongarch/{vector.s => insn_lasx.s} | 732 -------------------- gas/testsuite/gas/loongarch/insn_lbt.d | 186 ++++++ .../gas/loongarch/{lvz-lbt.s => insn_lbt.s} | 5 - gas/testsuite/gas/loongarch/insn_lsx.d | 742 +++++++++++++++++++++ gas/testsuite/gas/loongarch/insn_lsx.s | 732 ++++++++++++++++++++ gas/testsuite/gas/loongarch/insn_lvz.d | 15 + gas/testsuite/gas/loongarch/insn_lvz.s | 5 + gas/testsuite/gas/loongarch/relocs_32.d | 75 +++ gas/testsuite/gas/loongarch/relocs_32.s | 61 ++ gas/testsuite/gas/loongarch/relocs_64.d | 144 ++++ gas/testsuite/gas/loongarch/relocs_64.s | 109 +++ 24 files changed, 4667 insertions(+), 737 deletions(-) create mode 100644 gas/testsuite/gas/loongarch/insn_alias_32.d create mode 100644 gas/testsuite/gas/loongarch/insn_alias_32.s create mode 100644 gas/testsuite/gas/loongarch/insn_alias_64.d create mode 100644 gas/testsuite/gas/loongarch/insn_alias_64.s create mode 100644 gas/testsuite/gas/loongarch/insn_float32.d create mode 100644 gas/testsuite/gas/loongarch/insn_float32.s create mode 100644 gas/testsuite/gas/loongarch/insn_float64.d create mode 100644 gas/testsuite/gas/loongarch/insn_float64.s create mode 100644 gas/testsuite/gas/loongarch/insn_int32.d create mode 100644 gas/testsuite/gas/loongarch/insn_int32.s create mode 100644 gas/testsuite/gas/loongarch/insn_int64.d create mode 100644 gas/testsuite/gas/loongarch/insn_int64.s create mode 100644 gas/testsuite/gas/loongarch/insn_lasx.d copy gas/testsuite/gas/loongarch/{vector.s => insn_lasx.s} (50%) create mode 100644 gas/testsuite/gas/loongarch/insn_lbt.d copy gas/testsuite/gas/loongarch/{lvz-lbt.s => insn_lbt.s} (97%) create mode 100644 gas/testsuite/gas/loongarch/insn_lsx.d create mode 100644 gas/testsuite/gas/loongarch/insn_lsx.s create mode 100644 gas/testsuite/gas/loongarch/insn_lvz.d create mode 100644 gas/testsuite/gas/loongarch/insn_lvz.s create mode 100644 gas/testsuite/gas/loongarch/relocs_32.d create mode 100644 gas/testsuite/gas/loongarch/relocs_32.s create mode 100644 gas/testsuite/gas/loongarch/relocs_64.d create mode 100644 gas/testsuite/gas/loongarch/relocs_64.s