[Pkg-golang-commits] [golang] branch golang-1.8 updated (33ef833 -> 55f75ed)

Michael Hudson-Doyle mwhudson-guest at moszumanska.debian.org
Mon Apr 10 01:47:27 UTC 2017


This is an automated email from the git hooks/post-receive script.

mwhudson-guest pushed a change to branch golang-1.8
in repository golang.

      from  33ef833   releasing package golang-1.8 version 1.8-1
       new  fbef502   Imported Upstream version 1.8.1
       new  c716d36   Merge tag 'upstream/1.8.1' into golang-1.8
       new  4c12329   changelog
       new  55f75ed   releasing package golang-1.8 version 1.8.1-1

The 4 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:
 VERSION                                            |   2 +-
 debian/changelog                                   |   6 +
 doc/contrib.html                                   |   1 +
 doc/contribute.html                                | 527 ++++++++++++++-------
 doc/devel/release.html                             |  12 +
 doc/go1.8.html                                     |   2 +-
 doc/install-source.html                            |   4 +-
 misc/cgo/testcshared/test.bash                     |   7 +
 src/cmd/compile/internal/gc/esc.go                 |   9 +-
 src/cmd/compile/internal/gc/ssa.go                 |   9 +-
 src/cmd/compile/internal/gc/testdata/arith.go      |  11 +
 src/cmd/compile/internal/gc/typecheck.go           |  11 +-
 src/cmd/compile/internal/gc/walk.go                |  41 +-
 src/cmd/compile/internal/ssa/deadcode.go           |   2 +-
 src/cmd/compile/internal/ssa/export_test.go        |   5 +
 src/cmd/compile/internal/ssa/gen/AMD64Ops.go       |  16 +-
 src/cmd/compile/internal/ssa/gen/ARM.rules         |   4 +-
 src/cmd/compile/internal/ssa/gen/ARM64.rules       | 120 ++---
 src/cmd/compile/internal/ssa/gen/ARM64Ops.go       |  20 +-
 src/cmd/compile/internal/ssa/gen/ARMOps.go         |   4 +-
 src/cmd/compile/internal/ssa/gen/MIPS.rules        |   3 +-
 src/cmd/compile/internal/ssa/gen/MIPSOps.go        |  16 +-
 src/cmd/compile/internal/ssa/gen/S390X.rules       |  12 +-
 src/cmd/compile/internal/ssa/gen/S390XOps.go       |  16 +-
 src/cmd/compile/internal/ssa/gen/genericOps.go     |  28 +-
 src/cmd/compile/internal/ssa/gen/main.go           |   4 +
 src/cmd/compile/internal/ssa/likelyadjust.go       |  23 +-
 src/cmd/compile/internal/ssa/loop_test.go          |  87 ++++
 src/cmd/compile/internal/ssa/op.go                 |   1 +
 src/cmd/compile/internal/ssa/opGen.go              | 119 +++--
 src/cmd/compile/internal/ssa/rewriteARM.go         |  12 +-
 src/cmd/compile/internal/ssa/rewriteARM64.go       | 120 ++---
 src/cmd/compile/internal/ssa/rewriteMIPS.go        |   7 +-
 src/cmd/compile/internal/ssa/rewriteS390X.go       |  65 ++-
 src/cmd/compile/internal/ssa/schedule.go           |  24 +-
 src/cmd/go/go_test.go                              |  18 +
 src/cmd/go/pkg.go                                  |   4 -
 src/cmd/go/test.go                                 |  21 +
 src/cmd/link/dwarf_test.go                         | 125 +++++
 src/cmd/link/internal/ld/lib.go                    |  10 +-
 src/cmd/link/internal/ld/macho.go                  |   2 +-
 src/cmd/link/internal/ld/macho_combine_dwarf.go    |  52 +-
 src/cmd/link/internal/ppc64/asm.go                 |   8 +-
 src/cmd/link/linkbig_test.go                       |   2 +-
 src/crypto/tls/common.go                           |   1 +
 src/crypto/tls/tls_test.go                         |  90 +++-
 src/encoding/xml/marshal_test.go                   |   7 +-
 src/encoding/xml/read.go                           |   3 +-
 src/encoding/xml/xml_test.go                       |  34 ++
 src/image/png/reader.go                            |   5 +
 src/image/png/reader_test.go                       |  10 +
 src/internal/testenv/testenv.go                    |   9 +
 .../internal/testenv/testenv_cgo.go                |  10 +-
 src/net/http/http.go                               |   2 +-
 src/net/net.go                                     |   2 +-
 src/os/exec/exec_test.go                           |  10 +-
 src/reflect/all_test.go                            |  35 +-
 src/reflect/value.go                               |  26 +-
 src/runtime/crash_unix_test.go                     |  73 +++
 src/runtime/export_test.go                         |  13 +
 src/runtime/runtime1.go                            |   6 +
 src/runtime/sema.go                                |   1 +
 src/runtime/signal_sighandler.go                   |   2 +-
 src/text/template/multi_test.go                    |  37 +-
 src/text/template/template.go                      |   4 +-
 src/time/format_test.go                            |  41 +-
 test/fixedbugs/bug19403.go                         | 134 ++++++
 test/fixedbugs/issue19137.go                       |  35 ++
 test/fixedbugs/issue19168.go                       |  58 +++
 test/fixedbugs/issue19182.go                       |  36 ++
 test/fixedbugs/issue19201.go                       |  52 ++
 test/fixedbugs/issue19217.go                       |  39 ++
 test/fixedbugs/{issue18392.go => issue19323.go}    |  12 +-
 test/fixedbugs/issue19743.go                       |  31 ++
 74 files changed, 1887 insertions(+), 523 deletions(-)
 create mode 100644 src/cmd/compile/internal/ssa/loop_test.go
 create mode 100644 src/cmd/link/dwarf_test.go
 copy test/fixedbugs/issue18392.go => src/internal/testenv/testenv_cgo.go (64%)
 create mode 100644 test/fixedbugs/bug19403.go
 create mode 100644 test/fixedbugs/issue19137.go
 create mode 100644 test/fixedbugs/issue19168.go
 create mode 100644 test/fixedbugs/issue19182.go
 create mode 100644 test/fixedbugs/issue19201.go
 create mode 100644 test/fixedbugs/issue19217.go
 copy test/fixedbugs/{issue18392.go => issue19323.go} (50%)
 create mode 100644 test/fixedbugs/issue19743.go

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-golang/golang.git



More information about the pkg-golang-commits mailing list