This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

gdb and binutils branch master updated. 73589c9dbddc7906fa6a150f2a2a0ff6b746e8ba


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  73589c9dbddc7906fa6a150f2a2a0ff6b746e8ba (commit)
      from  a75fef0e5bc3bfeb4eac434c1c68831f55ab597d (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=73589c9dbddc7906fa6a150f2a2a0ff6b746e8ba

commit 73589c9dbddc7906fa6a150f2a2a0ff6b746e8ba
Author: Christian Svensson <blue@cmd.nu>
Date:   Tue Apr 22 15:57:47 2014 +0100

    Remove support for the (deprecated) openrisc and or32 configurations and replace
    with support for the new or1k configuration.

-----------------------------------------------------------------------

Summary of changes:
 bfd/ChangeLog                                      |   21 +
 bfd/Makefile.am                                    |   14 +-
 bfd/Makefile.in                                    |   21 +-
 bfd/archures.c                                     |   11 +-
 bfd/bfd-in2.h                                      |   33 +-
 bfd/coff-or32.c                                    |  628 -----
 bfd/coffcode.h                                     |   20 -
 bfd/config.bfd                                     |   44 +-
 bfd/configure                                      |    4 +-
 bfd/configure.in                                   |    9 +-
 bfd/cpu-openrisc.c                                 |   44 -
 bfd/cpu-or1k.c                                     |   59 +
 bfd/cpu-or32.c                                     |   42 -
 bfd/elf-bfd.h                                      |    1 +
 bfd/elf32-openrisc.c                               |  569 ----
 bfd/elf32-or1k.c                                   | 2872 ++++++++++++++++++++
 bfd/elf32-or32.c                                   |  514 ----
 bfd/libbfd.h                                       |   26 +-
 bfd/reloc.c                                        |   50 +-
 bfd/targets.c                                      |    9 +-
 binutils/ChangeLog                                 |    4 +
 binutils/readelf.c                                 |   28 +-
 binutils/testsuite/ChangeLog                       |    7 +
 .../testsuite/binutils-all/dw2-decodedline-1.S     |   16 +
 binutils/testsuite/binutils-all/objcopy.exp        |    1 -
 binutils/testsuite/binutils-all/objdump.exp        |   15 +-
 cpu/ChangeLog                                      |   10 +
 cpu/openrisc.cpu                                   |  774 ------
 cpu/openrisc.opc                                   |  164 --
 cpu/or1k.cpu                                       |  131 +
 cpu/or1k.opc                                       |  421 +++
 cpu/or1kcommon.cpu                                 |  360 +++
 cpu/or1korbis.cpu                                  | 1080 ++++++++
 cpu/or1korfpx.cpu                                  |  222 ++
 elfcpp/ChangeLog                                   |    4 +
 elfcpp/elfcpp.h                                    |    4 +-
 gas/ChangeLog                                      |   16 +
 gas/Makefile.am                                    |    6 +-
 gas/Makefile.in                                    |   43 +-
 gas/NEWS                                           |    2 +
 gas/config/obj-coff.h                              |    5 -
 gas/config/tc-openrisc.c                           |  362 ---
 gas/config/tc-openrisc.h                           |   61 -
 gas/config/tc-or1k.c                               |  362 +++
 gas/config/tc-or1k.h                               |   79 +
 gas/config/tc-or32.c                               |  966 -------
 gas/config/tc-or32.h                               |   56 -
 gas/configure                                      |    4 +-
 gas/configure.in                                   |    4 +-
 gas/configure.tgt                                  |   10 +-
 gas/doc/as.texinfo                                 |    2 +-
 gas/testsuite/ChangeLog                            |   20 +
 gas/testsuite/gas/all/gas.exp                      |    2 +-
 gas/testsuite/gas/elf/warn-2.s                     |    4 +-
 gas/testsuite/gas/lns/lns-common-1-or1k.s          |   25 +
 gas/testsuite/gas/lns/lns.exp                      |    3 +-
 gas/testsuite/gas/openrisc/addi.d                  |   10 -
 gas/testsuite/gas/openrisc/addi.s                  |    4 -
 gas/testsuite/gas/openrisc/allinsn.d               |  201 --
 gas/testsuite/gas/openrisc/allinsn.exp             |   24 -
 gas/testsuite/gas/openrisc/allinsn.s               |  260 --
 gas/testsuite/gas/openrisc/lohi.d                  |   13 -
 gas/testsuite/gas/openrisc/lohi.s                  |    7 -
 gas/testsuite/gas/openrisc/store.d                 |   13 -
 gas/testsuite/gas/openrisc/store.s                 |    7 -
 gas/testsuite/gas/or1k/allinsn.d                   |  689 +++++
 gas/testsuite/gas/or1k/allinsn.exp                 |    5 +
 gas/testsuite/gas/or1k/allinsn.s                   |  677 +++++
 include/ChangeLog                                  |    4 +
 include/coff/ChangeLog                             |    4 +
 include/coff/or32.h                                |  288 --
 include/dis-asm.h                                  |    4 +-
 include/elf/ChangeLog                              |    7 +
 include/elf/common.h                               |   11 +-
 include/elf/openrisc.h                             |   39 -
 include/elf/or1k.h                                 |   65 +
 include/elf/or32.h                                 |   56 -
 include/opcode/ChangeLog                           |    4 +
 include/opcode/or32.h                              |  181 --
 ld/ChangeLog                                       |   12 +
 ld/Makefile.am                                     |   20 +-
 ld/Makefile.in                                     |   25 +-
 ld/NEWS                                            |    2 +
 ld/configure.tgt                                   |    7 +-
 ld/emulparams/elf32openrisc.sh                     |   11 -
 ld/emulparams/elf32or1k.sh                         |   14 +
 ld/emulparams/elf32or1k_linux.sh                   |    5 +
 ld/emulparams/or32.sh                              |    5 -
 ld/emulparams/or32elf.sh                           |    9 -
 ld/scripttempl/or32.sc                             |   37 -
 ld/testsuite/ChangeLog                             |   30 +
 ld/testsuite/ld-discard/extern.d                   |    2 +-
 ld/testsuite/ld-discard/start.d                    |    2 +-
 ld/testsuite/ld-discard/static.d                   |    2 +-
 ld/testsuite/ld-elf/eh-frame-hdr.d                 |    2 +-
 ld/testsuite/ld-elf/group1.d                       |    2 +-
 ld/testsuite/ld-elf/group3b.d                      |    2 +-
 ld/testsuite/ld-elf/group8a.d                      |    2 +-
 ld/testsuite/ld-elf/group8b.d                      |    2 +-
 ld/testsuite/ld-elf/group9a.d                      |    2 +-
 ld/testsuite/ld-elf/group9b.d                      |    2 +-
 ld/testsuite/ld-elf/linkonce2.d                    |    2 +-
 ld/testsuite/ld-elf/merge2.d                       |    2 +-
 ld/testsuite/ld-elf/orphan-region.d                |    2 +-
 ld/testsuite/ld-elf/orphan.d                       |    2 +-
 ld/testsuite/ld-elf/orphan3.d                      |    2 +-
 ld/testsuite/ld-elf/pr12851.d                      |    2 +-
 ld/testsuite/ld-elf/pr12975.d                      |    2 +-
 ld/testsuite/ld-elf/pr13177.d                      |    2 +-
 ld/testsuite/ld-elf/pr13195.d                      |    2 +-
 ld/testsuite/ld-elf/pr349.d                        |    2 +-
 ld/testsuite/ld-elf/sec64k.exp                     |    2 +-
 ld/testsuite/ld-elf/warn1.d                        |    2 +-
 ld/testsuite/ld-elf/warn2.d                        |    2 +-
 ld/testsuite/ld-elf/warn3.d                        |    2 +-
 ld/testsuite/ld-scripts/weak.exp                   |    4 +-
 ld/testsuite/lib/ld-lib.exp                        |    4 +-
 opcodes/ChangeLog                                  |   25 +
 opcodes/Makefile.am                                |   29 +-
 opcodes/Makefile.in                                |   41 +-
 opcodes/configure                                  |    3 +-
 opcodes/configure.in                               |    3 +-
 opcodes/disassemble.c                              |   17 +-
 opcodes/openrisc-asm.c                             |  648 -----
 opcodes/openrisc-desc.c                            | 1018 -------
 opcodes/openrisc-desc.h                            |  288 --
 opcodes/openrisc-dis.c                             |  555 ----
 opcodes/openrisc-ibld.c                            | 1008 -------
 opcodes/openrisc-opc.c                             |  682 -----
 opcodes/openrisc-opc.h                             |  113 -
 opcodes/or1k-asm.c                                 |  909 +++++++
 opcodes/or1k-desc.c                                | 2074 ++++++++++++++
 opcodes/or1k-desc.h                                |  682 +++++
 opcodes/or1k-dis.c                                 |  562 ++++
 opcodes/or1k-ibld.c                                | 1051 +++++++
 opcodes/or1k-opc.c                                 | 1043 +++++++
 opcodes/or1k-opc.h                                 |  133 +
 opcodes/or1k-opinst.c                              |  556 ++++
 opcodes/or32-dis.c                                 |  325 ---
 opcodes/or32-opc.c                                 | 1030 -------
 140 files changed, 14559 insertions(+), 11306 deletions(-)
 delete mode 100644 bfd/coff-or32.c
 delete mode 100644 bfd/cpu-openrisc.c
 create mode 100644 bfd/cpu-or1k.c
 delete mode 100644 bfd/cpu-or32.c
 delete mode 100644 bfd/elf32-openrisc.c
 create mode 100644 bfd/elf32-or1k.c
 delete mode 100644 bfd/elf32-or32.c
 create mode 100644 binutils/testsuite/binutils-all/dw2-decodedline-1.S
 delete mode 100644 cpu/openrisc.cpu
 delete mode 100644 cpu/openrisc.opc
 create mode 100644 cpu/or1k.cpu
 create mode 100644 cpu/or1k.opc
 create mode 100644 cpu/or1kcommon.cpu
 create mode 100644 cpu/or1korbis.cpu
 create mode 100644 cpu/or1korfpx.cpu
 delete mode 100644 gas/config/tc-openrisc.c
 delete mode 100644 gas/config/tc-openrisc.h
 create mode 100644 gas/config/tc-or1k.c
 create mode 100644 gas/config/tc-or1k.h
 delete mode 100644 gas/config/tc-or32.c
 delete mode 100644 gas/config/tc-or32.h
 create mode 100644 gas/testsuite/gas/lns/lns-common-1-or1k.s
 delete mode 100644 gas/testsuite/gas/openrisc/addi.d
 delete mode 100644 gas/testsuite/gas/openrisc/addi.s
 delete mode 100644 gas/testsuite/gas/openrisc/allinsn.d
 delete mode 100644 gas/testsuite/gas/openrisc/allinsn.exp
 delete mode 100644 gas/testsuite/gas/openrisc/allinsn.s
 delete mode 100644 gas/testsuite/gas/openrisc/lohi.d
 delete mode 100644 gas/testsuite/gas/openrisc/lohi.s
 delete mode 100644 gas/testsuite/gas/openrisc/store.d
 delete mode 100644 gas/testsuite/gas/openrisc/store.s
 create mode 100644 gas/testsuite/gas/or1k/allinsn.d
 create mode 100644 gas/testsuite/gas/or1k/allinsn.exp
 create mode 100644 gas/testsuite/gas/or1k/allinsn.s
 delete mode 100644 include/coff/or32.h
 delete mode 100644 include/elf/openrisc.h
 create mode 100644 include/elf/or1k.h
 delete mode 100644 include/elf/or32.h
 delete mode 100644 include/opcode/or32.h
 delete mode 100644 ld/emulparams/elf32openrisc.sh
 create mode 100644 ld/emulparams/elf32or1k.sh
 create mode 100644 ld/emulparams/elf32or1k_linux.sh
 delete mode 100644 ld/emulparams/or32.sh
 delete mode 100644 ld/emulparams/or32elf.sh
 delete mode 100644 ld/scripttempl/or32.sc
 delete mode 100644 opcodes/openrisc-asm.c
 delete mode 100644 opcodes/openrisc-desc.c
 delete mode 100644 opcodes/openrisc-desc.h
 delete mode 100644 opcodes/openrisc-dis.c
 delete mode 100644 opcodes/openrisc-ibld.c
 delete mode 100644 opcodes/openrisc-opc.c
 delete mode 100644 opcodes/openrisc-opc.h
 create mode 100644 opcodes/or1k-asm.c
 create mode 100644 opcodes/or1k-desc.c
 create mode 100644 opcodes/or1k-desc.h
 create mode 100644 opcodes/or1k-dis.c
 create mode 100644 opcodes/or1k-ibld.c
 create mode 100644 opcodes/or1k-opc.c
 create mode 100644 opcodes/or1k-opc.h
 create mode 100644 opcodes/or1k-opinst.c
 delete mode 100644 opcodes/or32-dis.c
 delete mode 100644 opcodes/or32-opc.c


hooks/post-receive
-- 
gdb and binutils


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]