This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 5bcbb1ba126 Daily bump. new 31a91a29ae1 libgo: update to Go1.12rc1
The 1 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: gcc/go/gofrontend/MERGE | 2 +- libgo/MERGE | 2 +- libgo/VERSION | 2 +- libgo/go/cmd/cgo/gcc.go | 38 +++- libgo/go/cmd/cgo/godefs.go | 29 ++- libgo/go/cmd/cgo/out.go | 17 +- libgo/go/cmd/go/alldocs.go | 27 +-- libgo/go/cmd/go/go_test.go | 51 ++++- libgo/go/cmd/go/internal/clean/clean.go | 4 +- libgo/go/cmd/go/internal/generate/generate.go | 7 +- libgo/go/cmd/go/internal/help/helpdoc.go | 17 +- libgo/go/cmd/go/internal/modcmd/tidy.go | 4 +- libgo/go/cmd/go/internal/modget/get.go | 3 +- libgo/go/cmd/go/internal/modload/build.go | 10 + libgo/go/cmd/internal/objabi/funcid.go | 2 +- libgo/go/crypto/aes/block.go | 2 +- libgo/go/crypto/elliptic/elliptic.go | 3 +- libgo/go/crypto/subtle/constant_time.go | 8 +- libgo/go/crypto/tls/common.go | 59 +++++- libgo/go/crypto/tls/conn_test.go | 1 + libgo/go/crypto/tls/handshake_client_test.go | 24 +++ libgo/go/crypto/tls/handshake_server.go | 4 +- libgo/go/crypto/tls/handshake_server_test.go | 189 +++++++++++++++---- libgo/go/crypto/tls/handshake_server_tls13.go | 8 +- libgo/go/crypto/tls/key_agreement.go | 2 +- ...A => Client-TLSv12-ClientCert-RSA-PSS-Disabled} | 74 ++++---- .../Client-TLSv13-ClientCert-RSA-PSS-Disabled | 138 ++++++++++++++ ...LSv12-ClientAuthRequestedAndGiven-PSS-Disabled} | 86 ++++----- ...entAuthRequestedAndGiven-PSS-Disabled-Required} | 47 +++-- ...referenceRSA => Server-TLSv12-RSA-PSS-Disabled} | 61 +++--- ...PSS => Server-TLSv12-RSA-PSS-Disabled-Required} | 35 +--- ...TLSv13-ClientAuthRequestedAndGiven-PSS-Disabled | 182 ++++++++++++++++++ .../tls/testdata/Server-TLSv13-RSA-PSS-Disabled | 103 ++++++++++ libgo/go/crypto/tls/tls_test.go | 53 +++++- libgo/go/crypto/x509/cert_pool.go | 9 +- libgo/go/crypto/x509/verify_test.go | 116 ++++++++++++ libgo/go/crypto/x509/x509.go | 38 ++-- libgo/go/database/sql/sql.go | 9 +- libgo/go/encoding/json/encode.go | 1 + libgo/go/flag/flag.go | 2 + libgo/go/math/big/ratconv.go | 5 +- libgo/go/net/http/client.go | 8 +- libgo/go/net/http/fs_test.go | 15 +- libgo/go/net/http/h2_bundle.go | 8 +- libgo/go/net/http/http.go | 11 ++ libgo/go/net/http/request.go | 7 +- libgo/go/net/http/requestwrite_test.go | 11 ++ libgo/go/net/lookup_test.go | 12 +- libgo/go/net/net_test.go | 2 +- libgo/go/net/url/url.go | 15 ++ libgo/go/net/url/url_test.go | 23 ++- libgo/go/os/file_unix.go | 1 + libgo/go/os/path.go | 8 + libgo/go/os/removeall_at.go | 50 +++-- libgo/go/os/removeall_noat.go | 6 +- libgo/go/os/removeall_test.go | 80 ++++++++ libgo/go/path/filepath/path_test.go | 22 ++- libgo/go/runtime/malloc.go | 2 +- libgo/go/runtime/mheap.go | 207 +++++++++++++++------ libgo/go/runtime/testdata/testprog/memprof.go | 5 +- libgo/go/sort/sort.go | 2 +- libgo/go/sync/atomic/doc.go | 3 +- libgo/go/testing/sub_test.go | 49 +++++ libgo/go/testing/testing.go | 23 ++- libgo/misc/cgo/test/cgo_test.go | 1 + libgo/misc/cgo/test/issue29748.go | 22 +++ libgo/misc/cgo/test/issue29781.go | 17 ++ libgo/misc/cgo/test/issue30065.go | 38 ++++ 68 files changed, 1718 insertions(+), 404 deletions(-) copy libgo/go/crypto/tls/testdata/{Client-TLSv12-ClientCert-RSA-RSA => Client-TLSv [...] create mode 100644 libgo/go/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-PSS-Disabled copy libgo/go/crypto/tls/testdata/{Server-TLSv12-ClientAuthRequestedAndGiven => Se [...] copy libgo/go/crypto/tls/testdata/{Server-TLSv12-RSA-RC4 => Server-TLSv12-ClientAu [...] copy libgo/go/crypto/tls/testdata/{Server-TLSv12-CipherSuiteCertPreferenceRSA => S [...] copy libgo/go/crypto/tls/testdata/{Server-TLSv12-RSA-RSAPSS => Server-TLSv12-RSA-P [...] create mode 100644 libgo/go/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedA [...] create mode 100644 libgo/go/crypto/tls/testdata/Server-TLSv13-RSA-PSS-Disabled create mode 100644 libgo/misc/cgo/test/issue29748.go create mode 100644 libgo/misc/cgo/test/issue29781.go create mode 100644 libgo/misc/cgo/test/issue30065.go