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 4677effd9e Automatic date update in version.in new 1c4f3780f7 or1k: Add relocations for high-signed and low-stores new f2c1801f62 or1k: Fix messages for relocations in shared libraries new c8e98e3692 or1k: Add the l.adrp insn and supporting relocations new 07f5f4c683 or1k: Add the l.muld, l.muldu, l.macu, l.msbu insns new 1f041c6edf or1k: Add OpenRISC gas documentation
The 5 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 | 69 ++ bfd/bfd-in2.h | 19 +- bfd/elf32-or1k.c | 977 ++++++++++++++++++----- bfd/libbfd.h | 19 +- bfd/reloc.c | 34 +- cpu/ChangeLog | 41 + cpu/or1k.opc | 585 +++++++------- cpu/or1korbis.cpu | 300 ++++--- gas/ChangeLog | 46 ++ gas/config/tc-or1k.c | 6 + gas/doc/Makefile.am | 1 + gas/doc/Makefile.in | 1 + gas/doc/all.texi | 1 + gas/doc/as.texi | 10 + gas/doc/c-or1k.texi | 300 +++++++ gas/testsuite/gas/or1k/allinsn.d | 50 +- gas/testsuite/gas/or1k/allinsn.s | 25 + gas/testsuite/gas/or1k/{allinsn.exp => or1k.exp} | 1 + gas/testsuite/gas/or1k/reloc-1.d | 72 ++ gas/testsuite/gas/or1k/reloc-1.s | 76 ++ gas/testsuite/gas/or1k/reloc-2.l | 11 + gas/testsuite/gas/or1k/reloc-2.s | 13 + include/ChangeLog | 14 + include/elf/or1k.h | 19 + ld/ChangeLog | 16 + ld/testsuite/ld-or1k/offsets1.d | 212 +++++ ld/testsuite/ld-or1k/offsets1.s | 14 + ld/testsuite/ld-or1k/or1k.exp | 91 +++ ld/testsuite/ld-or1k/plt1.dd | 27 + ld/testsuite/ld-or1k/plt1.s | 11 + ld/testsuite/ld-or1k/plt1.x.dd | 27 + ld/testsuite/ld-or1k/plta1.dd | 27 + ld/testsuite/ld-or1k/plta1.s | 11 + ld/testsuite/ld-or1k/pltlib.s | 12 + opcodes/ChangeLog | 24 + opcodes/or1k-asm.c | 590 +++++++------- opcodes/or1k-desc.c | 34 +- opcodes/or1k-desc.h | 48 +- opcodes/or1k-dis.c | 3 + opcodes/or1k-ibld.c | 29 +- opcodes/or1k-opc.c | 44 +- opcodes/or1k-opc.h | 65 +- opcodes/or1k-opinst.c | 98 ++- sim/ChangeLog | 9 + sim/common/ChangeLog | 7 + sim/common/cgen-ops.h | 36 + sim/or1k/cpu.h | 32 + sim/or1k/decode.c | 239 +++++- sim/or1k/decode.h | 82 +- sim/or1k/model.c | 186 ++++- sim/or1k/sem-switch.c | 281 +++++-- sim/or1k/sem.c | 293 +++++-- sim/testsuite/sim/or1k/ChangeLog | 5 + sim/testsuite/sim/or1k/div.S | 12 +- sim/testsuite/sim/or1k/mul.S | 109 ++- 55 files changed, 4168 insertions(+), 1196 deletions(-) create mode 100644 gas/doc/c-or1k.texi rename gas/testsuite/gas/or1k/{allinsn.exp => or1k.exp} (83%) create mode 100644 gas/testsuite/gas/or1k/reloc-1.d create mode 100644 gas/testsuite/gas/or1k/reloc-1.s create mode 100644 gas/testsuite/gas/or1k/reloc-2.l create mode 100644 gas/testsuite/gas/or1k/reloc-2.s create mode 100644 ld/testsuite/ld-or1k/offsets1.d create mode 100644 ld/testsuite/ld-or1k/offsets1.s create mode 100644 ld/testsuite/ld-or1k/or1k.exp create mode 100644 ld/testsuite/ld-or1k/plt1.dd create mode 100644 ld/testsuite/ld-or1k/plt1.s create mode 100644 ld/testsuite/ld-or1k/plt1.x.dd create mode 100644 ld/testsuite/ld-or1k/plta1.dd create mode 100644 ld/testsuite/ld-or1k/plta1.s create mode 100644 ld/testsuite/ld-or1k/pltlib.s