summaryrefslogtreecommitdiff
path: root/lang/go14
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2015-07-31 14:46:25 +0000
committerbsiegert <bsiegert@pkgsrc.org>2015-07-31 14:46:25 +0000
commitf60b0d1fbd94238c059a551eeea265928ecd76ef (patch)
treeecda7177a7375516c5fe567947fbe5fbd8cb1bce /lang/go14
parent102c55ef3e4679398f9d2112644bba6590824e3f (diff)
downloadpkgsrc-f60b0d1fbd94238c059a551eeea265928ecd76ef.tar.gz
Create lang/go14 as a copy of lang/go but which installs under
$PREFIX/go14. Go 1.5 is going to be released soon, and it will depend on an existing installation of Go 1.4 to compile. So let's provide one.
Diffstat (limited to 'lang/go14')
-rw-r--r--lang/go14/DESCR12
-rw-r--r--lang/go14/Makefile86
-rw-r--r--lang/go14/PLIST4565
-rw-r--r--lang/go14/distinfo33
-rw-r--r--lang/go14/patches/patch-doc_progs_run17
-rw-r--r--lang/go14/patches/patch-misc_cgo_test_cthread__unix.c15
-rw-r--r--lang/go14/patches/patch-misc_cgo_testso_cgoso.go14
-rw-r--r--lang/go14/patches/patch-misc_cgo_testso_cgoso__unix.go15
-rw-r--r--lang/go14/patches/patch-src_cmd_5l_asm.c36
-rw-r--r--lang/go14/patches/patch-src_cmd_6l_asm.c68
-rw-r--r--lang/go14/patches/patch-src_cmd_8l_asm.c36
-rw-r--r--lang/go14/patches/patch-src_cmd_go_build.go17
-rw-r--r--lang/go14/patches/patch-src_cmd_go_pkg.go17
-rw-r--r--lang/go14/patches/patch-src_cmd_ld_data.c139
-rw-r--r--lang/go14/patches/patch-src_cmd_ld_doc.go15
-rw-r--r--lang/go14/patches/patch-src_cmd_ld_lib.h14
-rw-r--r--lang/go14/patches/patch-src_cmd_ld_pobj.c27
-rw-r--r--lang/go14/patches/patch-src_crypto_x509_root__unix.go15
-rw-r--r--lang/go14/patches/patch-src_go_build_build.go14
-rw-r--r--lang/go14/patches/patch-src_net_cgo__bsd.go15
-rw-r--r--lang/go14/patches/patch-src_net_cgo__stub.go15
-rw-r--r--lang/go14/patches/patch-src_net_cgo__unix.go15
-rw-r--r--lang/go14/patches/patch-src_os_user_lookup__unix.go14
-rw-r--r--lang/go14/patches/patch-src_runtime_cgo_cgo.go14
-rw-r--r--lang/go14/patches/patch-src_runtime_cgo_gcc__setenv.c15
-rw-r--r--lang/go14/patches/patch-src_runtime_cgo_gcc__solaris__amd64.c77
-rw-r--r--lang/go14/patches/patch-src_runtime_cgo_setenv.c15
-rw-r--r--lang/go14/patches/patch-src_runtime_netpoll__solaris.c26
-rw-r--r--lang/go14/patches/patch-src_runtime_os__solaris.c95
-rw-r--r--lang/go14/patches/patch-src_runtime_os__solaris.h27
-rw-r--r--lang/go14/patches/patch-src_runtime_sys__solaris__amd64.s40
-rw-r--r--lang/go14/patches/patch-src_runtime_thunk__solaris__amd64.s108
32 files changed, 5631 insertions, 0 deletions
diff --git a/lang/go14/DESCR b/lang/go14/DESCR
new file mode 100644
index 00000000000..b1f7f7e35ef
--- /dev/null
+++ b/lang/go14/DESCR
@@ -0,0 +1,12 @@
+The Go programming language is an open source project to make
+programmers more productive.
+
+Go is expressive, concise, clean, and efficient. Its concurrency
+mechanisms make it easy to write programs that get the most out of
+multicore and networked machines, while its novel type system enables
+flexible and modular program construction. Go compiles quickly to
+machine code yet has the convenience of garbage collection and the power
+of run-time reflection. It's a fast, statically typed, compiled language
+that feels like a dynamically typed, interpreted language.
+
+This package contains the (legacy) 1.4 release of Go.
diff --git a/lang/go14/Makefile b/lang/go14/Makefile
new file mode 100644
index 00000000000..34b5a679bc2
--- /dev/null
+++ b/lang/go14/Makefile
@@ -0,0 +1,86 @@
+# $NetBSD: Makefile,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+.include "../../lang/go/version.mk"
+
+DISTNAME= go${GO14_VERSION}.src
+PKGNAME= go14-${GO14_VERSION}
+PKGREVISION= 2
+CATEGORIES= lang
+MASTER_SITES= https://storage.googleapis.com/golang/
+PATCH_SITES= https://codereview.appspot.com/download/
+
+MAINTAINER= bsiegert@NetBSD.org
+HOMEPAGE= http://golang.org/
+COMMENT= The Go programming language
+LICENSE= modified-bsd
+
+WRKSRC= ${WRKDIR}/go
+USE_TOOLS+= bash:run perl:run pax
+
+# uses ulimit -T
+BUILD_DEPENDS+= bash>=4.2nb3:../../shells/bash
+
+# cgo compiles under TMPDIR
+TMPDIR?= /tmp
+BUILDLINK_PASSTHRU_DIRS+= ${TMPDIR}
+
+# bash script may use unportable bash constructs
+CHECK_PORTABILITY_SKIP= lib/time/update.bash
+
+GOROOT_FINAL= ${PREFIX}/go14
+INSTALLATION_DIRS= bin
+
+REPLACE_BASH+= doc/articles/wiki/test.bash
+REPLACE_BASH+= doc/codewalk/run
+REPLACE_BASH+= doc/progs/run
+REPLACE_BASH+= doc/progs/update.bash
+REPLACE_BASH+= lib/time/update.bash
+REPLACE_BASH+= misc/arm/a
+REPLACE_BASH+= misc/benchcmp
+REPLACE_BASH+= misc/cgo/errors/test.bash
+REPLACE_BASH+= misc/cgo/testcdefs/test.bash
+REPLACE_BASH+= misc/cgo/testgodefs/test.bash
+REPLACE_BASH+= misc/cgo/testso/test.bash
+REPLACE_BASH+= misc/makerelease/darwin/scripts/postinstall
+REPLACE_BASH+= misc/makerelease/darwin/scripts/preinstall
+REPLACE_BASH+= misc/nacl/go_nacl_386_exec
+REPLACE_BASH+= misc/nacl/go_nacl_amd64p32_exec
+REPLACE_BASH+= misc/nacl/go_nacl_arm_exec
+REPLACE_BASH+= src/all.bash
+REPLACE_BASH+= src/androidtest.bash
+REPLACE_BASH+= src/clean.bash
+REPLACE_BASH+= src/cmd/go/mkdoc.sh
+REPLACE_BASH+= src/cmd/go/test.bash
+REPLACE_BASH+= src/make.bash
+REPLACE_BASH+= src/nacltest.bash
+REPLACE_BASH+= src/race.bash
+REPLACE_BASH+= src/run.bash
+REPLACE_BASH+= src/runtime/mknacl.sh
+REPLACE_BASH+= src/sudo.bash
+REPLACE_BASH+= src/syscall/mkall.sh
+REPLACE_BASH+= src/syscall/mkerrors.sh
+REPLACE_BASH+= src/syscall/mksysnum_plan9.sh
+REPLACE_BASH+= test/bench/shootout/timing.sh
+REPLACE_BASH+= test/run
+
+REPLACE_PERL+= src/net/http/cgi/testdata/test.cgi
+REPLACE_PERL+= src/regexp/syntax/make_perl_groups.pl
+REPLACE_PERL+= src/syscall/*.pl
+REPLACE_PERL+= test/errchk
+
+# uses /bin/rc (for Plan 9)
+CHECK_INTERPRETER_SKIP+= go/include/plan9/mklibc.rc
+CHECK_INTERPRETER_SKIP+= go/src/all.rc
+CHECK_INTERPRETER_SKIP+= go/src/clean.rc
+CHECK_INTERPRETER_SKIP+= go/src/make.rc
+CHECK_INTERPRETER_SKIP+= go/src/run.rc
+
+do-build:
+ cd ${WRKSRC}/src && env GOROOT_FINAL=${GOROOT_FINAL:Q} ${BASH} ./make.bash
+
+do-install:
+ cd ${WRKSRC} && rm -rf .hgignore .hgtags pkg/obj
+ cd ${WRKDIR}/go && pax -rw * ${DESTDIR}${GOROOT_FINAL}
+ find ${DESTDIR}${GOROOT_FINAL} -name \*.orig -exec rm {} \;
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/lang/go14/PLIST b/lang/go14/PLIST
new file mode 100644
index 00000000000..6b84564e9a2
--- /dev/null
+++ b/lang/go14/PLIST
@@ -0,0 +1,4565 @@
+@comment $NetBSD: PLIST,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+go14/AUTHORS
+go14/CONTRIBUTORS
+go14/LICENSE
+go14/PATENTS
+go14/README
+go14/VERSION
+go14/api/README
+go14/api/except.txt
+go14/api/go1.1.txt
+go14/api/go1.2.txt
+go14/api/go1.3.txt
+go14/api/go1.4.txt
+go14/api/go1.txt
+go14/api/next.txt
+go14/bin/go
+go14/bin/gofmt
+go14/doc/articles/go_command.html
+go14/doc/articles/index.html
+go14/doc/articles/race_detector.html
+go14/doc/articles/wiki/edit.html
+go14/doc/articles/wiki/final-noclosure.go
+go14/doc/articles/wiki/final-noerror.go
+go14/doc/articles/wiki/final-parsetemplate.go
+go14/doc/articles/wiki/final-template.go
+go14/doc/articles/wiki/final.go
+go14/doc/articles/wiki/get.go
+go14/doc/articles/wiki/http-sample.go
+go14/doc/articles/wiki/index.html
+go14/doc/articles/wiki/notemplate.go
+go14/doc/articles/wiki/part1-noerror.go
+go14/doc/articles/wiki/part1.go
+go14/doc/articles/wiki/part2.go
+go14/doc/articles/wiki/part3-errorhandling.go
+go14/doc/articles/wiki/part3.go
+go14/doc/articles/wiki/test.bash
+go14/doc/articles/wiki/test_Test.txt.good
+go14/doc/articles/wiki/test_edit.good
+go14/doc/articles/wiki/test_view.good
+go14/doc/articles/wiki/view.html
+go14/doc/asm.html
+go14/doc/cmd.html
+go14/doc/code.html
+go14/doc/codewalk/codewalk.css
+go14/doc/codewalk/codewalk.js
+go14/doc/codewalk/codewalk.xml
+go14/doc/codewalk/functions.xml
+go14/doc/codewalk/markov.go
+go14/doc/codewalk/markov.xml
+go14/doc/codewalk/pig.go
+go14/doc/codewalk/popout.png
+go14/doc/codewalk/run
+go14/doc/codewalk/sharemem.xml
+go14/doc/codewalk/urlpoll.go
+go14/doc/contrib.html
+go14/doc/contribute.html
+go14/doc/debugging_with_gdb.html
+go14/doc/devel/release.html
+go14/doc/devel/weekly.html
+go14/doc/docs.html
+go14/doc/effective_go.html
+go14/doc/gccgo_contribute.html
+go14/doc/gccgo_install.html
+go14/doc/go-logo-black.png
+go14/doc/go-logo-blue.png
+go14/doc/go-logo-white.png
+go14/doc/go1.1.html
+go14/doc/go1.2.html
+go14/doc/go1.3.html
+go14/doc/go1.4.html
+go14/doc/go1.html
+go14/doc/go1compat.html
+go14/doc/go_faq.html
+go14/doc/go_mem.html
+go14/doc/go_spec.html
+go14/doc/gopher/README
+go14/doc/gopher/appenginegopher.jpg
+go14/doc/gopher/appenginegophercolor.jpg
+go14/doc/gopher/appenginelogo.gif
+go14/doc/gopher/biplane.jpg
+go14/doc/gopher/bumper.png
+go14/doc/gopher/bumper192x108.png
+go14/doc/gopher/bumper320x180.png
+go14/doc/gopher/bumper480x270.png
+go14/doc/gopher/bumper640x360.png
+go14/doc/gopher/doc.png
+go14/doc/gopher/fiveyears.jpg
+go14/doc/gopher/frontpage.png
+go14/doc/gopher/gopherbw.png
+go14/doc/gopher/gophercolor.png
+go14/doc/gopher/gophercolor16x16.png
+go14/doc/gopher/help.png
+go14/doc/gopher/pencil/gopherhat.jpg
+go14/doc/gopher/pencil/gopherhelmet.jpg
+go14/doc/gopher/pencil/gophermega.jpg
+go14/doc/gopher/pencil/gopherrunning.jpg
+go14/doc/gopher/pencil/gopherswim.jpg
+go14/doc/gopher/pencil/gopherswrench.jpg
+go14/doc/gopher/pkg.png
+go14/doc/gopher/project.png
+go14/doc/gopher/ref.png
+go14/doc/gopher/run.png
+go14/doc/gopher/talks.png
+go14/doc/help.html
+go14/doc/ie.css
+go14/doc/install-source.html
+go14/doc/install.html
+go14/doc/logo-153x55.png
+go14/doc/play/fib.go
+go14/doc/play/hello.go
+go14/doc/play/life.go
+go14/doc/play/peano.go
+go14/doc/play/pi.go
+go14/doc/play/sieve.go
+go14/doc/play/solitaire.go
+go14/doc/play/tree.go
+go14/doc/progs/cgo1.go
+go14/doc/progs/cgo2.go
+go14/doc/progs/cgo3.go
+go14/doc/progs/cgo4.go
+go14/doc/progs/defer.go
+go14/doc/progs/defer.out
+go14/doc/progs/defer2.go
+go14/doc/progs/defer2.out
+go14/doc/progs/eff_bytesize.go
+go14/doc/progs/eff_bytesize.out
+go14/doc/progs/eff_qr.go
+go14/doc/progs/eff_sequence.go
+go14/doc/progs/eff_sequence.out
+go14/doc/progs/eff_unused1.go
+go14/doc/progs/eff_unused2.go
+go14/doc/progs/error.go
+go14/doc/progs/error2.go
+go14/doc/progs/error3.go
+go14/doc/progs/error4.go
+go14/doc/progs/go1.go
+go14/doc/progs/gobs1.go
+go14/doc/progs/gobs2.go
+go14/doc/progs/image_draw.go
+go14/doc/progs/image_package1.go
+go14/doc/progs/image_package1.out
+go14/doc/progs/image_package2.go
+go14/doc/progs/image_package2.out
+go14/doc/progs/image_package3.go
+go14/doc/progs/image_package3.out
+go14/doc/progs/image_package4.go
+go14/doc/progs/image_package4.out
+go14/doc/progs/image_package5.go
+go14/doc/progs/image_package5.out
+go14/doc/progs/image_package6.go
+go14/doc/progs/image_package6.out
+go14/doc/progs/interface.go
+go14/doc/progs/interface2.go
+go14/doc/progs/interface2.out
+go14/doc/progs/json1.go
+go14/doc/progs/json2.go
+go14/doc/progs/json2.out
+go14/doc/progs/json3.go
+go14/doc/progs/json4.go
+go14/doc/progs/json5.go
+go14/doc/progs/run
+go14/doc/progs/slices.go
+go14/doc/progs/timeout1.go
+go14/doc/progs/timeout2.go
+go14/doc/progs/update.bash
+go14/doc/root.html
+go14/doc/share.png
+go14/doc/sieve.gif
+go14/doc/tos.html
+go14/favicon.ico
+go14/include/README
+go14/include/ar.h
+go14/include/bio.h
+go14/include/fmt.h
+go14/include/libc.h
+go14/include/link.h
+go14/include/plan9/386/u.h
+go14/include/plan9/amd64/u.h
+go14/include/plan9/arm/u.h
+go14/include/plan9/bio.h
+go14/include/plan9/errno.h
+go14/include/plan9/fmt.h
+go14/include/plan9/libc.h
+go14/include/plan9/link.h
+go14/include/plan9/mklibc.rc
+go14/include/plan9/stdarg.h
+go14/include/plan9/utf.h
+go14/include/u.h
+go14/include/utf.h
+go14/lib/time/README
+go14/lib/time/update.bash
+go14/lib/time/zoneinfo.zip
+go14/misc/android/README
+go14/misc/android/go_android_exec.go
+go14/misc/arm/a
+go14/misc/benchcmp
+go14/misc/cgo/errors/err1.go
+go14/misc/cgo/errors/err2.go
+go14/misc/cgo/errors/err3.go
+go14/misc/cgo/errors/issue7757.go
+go14/misc/cgo/errors/issue8442.go
+go14/misc/cgo/errors/test.bash
+go14/misc/cgo/gmp/fib.go
+go14/misc/cgo/gmp/gmp.go
+go14/misc/cgo/gmp/pi.go
+go14/misc/cgo/life/c-life.c
+go14/misc/cgo/life/life.go
+go14/misc/cgo/life/life.h
+go14/misc/cgo/life/main.go
+go14/misc/cgo/life/main.out
+go14/misc/cgo/nocgo/nocgo.go
+go14/misc/cgo/nocgo/nocgo_test.go
+go14/misc/cgo/stdio/chain.go
+go14/misc/cgo/stdio/chain.out
+go14/misc/cgo/stdio/fib.go
+go14/misc/cgo/stdio/fib.out
+go14/misc/cgo/stdio/file.go
+go14/misc/cgo/stdio/hello.go
+go14/misc/cgo/stdio/hello.out
+go14/misc/cgo/stdio/run.out
+go14/misc/cgo/stdio/stdio.go
+go14/misc/cgo/test/align.go
+go14/misc/cgo/test/api.go
+go14/misc/cgo/test/backdoor/backdoor.go
+go14/misc/cgo/test/backdoor/runtime_gccgo.c
+go14/misc/cgo/test/backdoor/thunk.s
+go14/misc/cgo/test/basic.go
+go14/misc/cgo/test/buildid_linux.go
+go14/misc/cgo/test/callback.go
+go14/misc/cgo/test/callback_c.c
+go14/misc/cgo/test/callback_c_gc.c
+go14/misc/cgo/test/callback_c_gccgo.c
+go14/misc/cgo/test/cflags.go
+go14/misc/cgo/test/cgo_linux_test.go
+go14/misc/cgo/test/cgo_test.go
+go14/misc/cgo/test/cthread.go
+go14/misc/cgo/test/cthread_unix.c
+go14/misc/cgo/test/cthread_windows.c
+go14/misc/cgo/test/duplicate_symbol.go
+go14/misc/cgo/test/env.go
+go14/misc/cgo/test/exports.go
+go14/misc/cgo/test/fpvar.go
+go14/misc/cgo/test/helpers.go
+go14/misc/cgo/test/issue1222.go
+go14/misc/cgo/test/issue1328.go
+go14/misc/cgo/test/issue1560.go
+go14/misc/cgo/test/issue1635.go
+go14/misc/cgo/test/issue2462.go
+go14/misc/cgo/test/issue3250.go
+go14/misc/cgo/test/issue3250w.go
+go14/misc/cgo/test/issue3261.go
+go14/misc/cgo/test/issue3729.go
+go14/misc/cgo/test/issue3729w.go
+go14/misc/cgo/test/issue3741.go
+go14/misc/cgo/test/issue3775.go
+go14/misc/cgo/test/issue3945.go
+go14/misc/cgo/test/issue4029.go
+go14/misc/cgo/test/issue4029w.go
+go14/misc/cgo/test/issue4054a.go
+go14/misc/cgo/test/issue4054b.go
+go14/misc/cgo/test/issue4273.c
+go14/misc/cgo/test/issue4273b.c
+go14/misc/cgo/test/issue4339.c
+go14/misc/cgo/test/issue4339.go
+go14/misc/cgo/test/issue4339.h
+go14/misc/cgo/test/issue4417.go
+go14/misc/cgo/test/issue4857.go
+go14/misc/cgo/test/issue5227.go
+go14/misc/cgo/test/issue5242.go
+go14/misc/cgo/test/issue5337.go
+go14/misc/cgo/test/issue5337w.go
+go14/misc/cgo/test/issue5548.go
+go14/misc/cgo/test/issue5548_c.c
+go14/misc/cgo/test/issue5603.go
+go14/misc/cgo/test/issue5740.go
+go14/misc/cgo/test/issue5740a.c
+go14/misc/cgo/test/issue5740b.c
+go14/misc/cgo/test/issue5986.go
+go14/misc/cgo/test/issue6128.go
+go14/misc/cgo/test/issue6390.go
+go14/misc/cgo/test/issue6472.go
+go14/misc/cgo/test/issue6506.go
+go14/misc/cgo/test/issue6612.go
+go14/misc/cgo/test/issue6833.go
+go14/misc/cgo/test/issue6833_c.c
+go14/misc/cgo/test/issue6997_linux.c
+go14/misc/cgo/test/issue6997_linux.go
+go14/misc/cgo/test/issue7234_test.go
+go14/misc/cgo/test/issue7560.go
+go14/misc/cgo/test/issue7665.go
+go14/misc/cgo/test/issue7786.go
+go14/misc/cgo/test/issue7978.go
+go14/misc/cgo/test/issue8092.go
+go14/misc/cgo/test/issue8148.go
+go14/misc/cgo/test/issue8331.h
+go14/misc/cgo/test/issue8331a.go
+go14/misc/cgo/test/issue8331b.go
+go14/misc/cgo/test/issue8428.go
+go14/misc/cgo/test/issue8441.go
+go14/misc/cgo/test/issue8517.go
+go14/misc/cgo/test/issue8517_windows.c
+go14/misc/cgo/test/issue8517_windows.go
+go14/misc/cgo/test/issue8694.go
+go14/misc/cgo/test/issue8811.c
+go14/misc/cgo/test/issue8811.go
+go14/misc/cgo/test/issue8828.go
+go14/misc/cgo/test/issue8828/issue8828.c
+go14/misc/cgo/test/issue8828/trivial.go
+go14/misc/cgo/test/issue9026.go
+go14/misc/cgo/test/issue9026/issue9026.go
+go14/misc/cgo/test/setgid_linux.go
+go14/misc/cgo/test/sleep_windows_386.go
+go14/misc/cgo/testasan/main.go
+go14/misc/cgo/testcdefs/cdefstest.c
+go14/misc/cgo/testcdefs/cdefstest.go
+go14/misc/cgo/testcdefs/main.c
+go14/misc/cgo/testcdefs/main.go
+go14/misc/cgo/testcdefs/test.bash
+go14/misc/cgo/testgodefs/anonunion.go
+go14/misc/cgo/testgodefs/issue8478.go
+go14/misc/cgo/testgodefs/main.go
+go14/misc/cgo/testgodefs/test.bash
+go14/misc/cgo/testso/cgoso.c
+go14/misc/cgo/testso/cgoso.go
+go14/misc/cgo/testso/cgoso_c.c
+go14/misc/cgo/testso/cgoso_unix.go
+go14/misc/cgo/testso/main.go
+go14/misc/cgo/testso/test.bash
+go14/misc/cgo/testso/test.bat
+go14/misc/cgo/testtls/tls.go
+go14/misc/cgo/testtls/tls_test.go
+go14/misc/cgo/testtls/tls_unix.c
+go14/misc/chrome/gophertool/README.txt
+go14/misc/chrome/gophertool/background.html
+go14/misc/chrome/gophertool/background.js
+go14/misc/chrome/gophertool/gopher.js
+go14/misc/chrome/gophertool/gopher.png
+go14/misc/chrome/gophertool/manifest.json
+go14/misc/chrome/gophertool/popup.html
+go14/misc/chrome/gophertool/popup.js
+go14/misc/dashboard/codereview/app.yaml
+go14/misc/dashboard/codereview/cron.yaml
+go14/misc/dashboard/codereview/dashboard/cl.go
+go14/misc/dashboard/codereview/dashboard/front.go
+go14/misc/dashboard/codereview/dashboard/gc.go
+go14/misc/dashboard/codereview/dashboard/mail.go
+go14/misc/dashboard/codereview/dashboard/people.go
+go14/misc/dashboard/codereview/index.yaml
+go14/misc/dashboard/codereview/queue.yaml
+go14/misc/dashboard/codereview/static/gopherstamp.jpg
+go14/misc/dashboard/codereview/static/icon.png
+go14/misc/editors
+go14/misc/git/pre-commit
+go14/misc/linkcheck/linkcheck.go
+go14/misc/makerelease/darwin/Distribution
+go14/misc/makerelease/darwin/Resources/bg.png
+go14/misc/makerelease/darwin/etc/paths.d/go
+go14/misc/makerelease/darwin/scripts/postinstall
+go14/misc/makerelease/darwin/scripts/preinstall
+go14/misc/makerelease/makerelease.go
+go14/misc/makerelease/windows/LICENSE.rtf
+go14/misc/makerelease/windows/README.txt
+go14/misc/makerelease/windows/images/Banner.jpg
+go14/misc/makerelease/windows/images/Dialog.jpg
+go14/misc/makerelease/windows/images/DialogLeft.jpg
+go14/misc/makerelease/windows/images/gopher.ico
+go14/misc/makerelease/windows/installer.wxs
+go14/misc/nacl/README
+go14/misc/nacl/go_nacl_386_exec
+go14/misc/nacl/go_nacl_amd64p32_exec
+go14/misc/nacl/go_nacl_arm_exec
+go14/misc/nacl/mkzip.go
+go14/misc/nacl/testdata/bin/placeholder
+go14/misc/nacl/testdata/empty
+go14/misc/nacl/testdata/group
+go14/misc/nacl/testdata/hosts
+go14/misc/nacl/testdata/mime.types
+go14/misc/nacl/testzip.proto
+go14/misc/swig/callback/callback.cc
+go14/misc/swig/callback/callback.go
+go14/misc/swig/callback/callback.h
+go14/misc/swig/callback/callback.swigcxx
+go14/misc/swig/callback/callback_test.go
+go14/misc/swig/stdio/file.swig
+go14/misc/swig/stdio/file_test.go
+go14/pkg/${GO_PLATFORM}/archive/tar.a
+go14/pkg/${GO_PLATFORM}/archive/zip.a
+go14/pkg/${GO_PLATFORM}/bufio.a
+go14/pkg/${GO_PLATFORM}/bytes.a
+go14/pkg/${GO_PLATFORM}/cgocall.h
+go14/pkg/${GO_PLATFORM}/cmd/internal/goobj.a
+go14/pkg/${GO_PLATFORM}/cmd/internal/objfile.a
+go14/pkg/${GO_PLATFORM}/cmd/internal/rsc.io/arm/armasm.a
+go14/pkg/${GO_PLATFORM}/cmd/internal/rsc.io/x86/x86asm.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/commands.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/driver.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/fetch.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/plugin.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/profile.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/report.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/svg.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/symbolizer.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/symbolz.a
+go14/pkg/${GO_PLATFORM}/cmd/pprof/internal/tempfile.a
+go14/pkg/${GO_PLATFORM}/compress/bzip2.a
+go14/pkg/${GO_PLATFORM}/compress/flate.a
+go14/pkg/${GO_PLATFORM}/compress/gzip.a
+go14/pkg/${GO_PLATFORM}/compress/lzw.a
+go14/pkg/${GO_PLATFORM}/compress/zlib.a
+go14/pkg/${GO_PLATFORM}/container/heap.a
+go14/pkg/${GO_PLATFORM}/container/list.a
+go14/pkg/${GO_PLATFORM}/container/ring.a
+go14/pkg/${GO_PLATFORM}/crypto.a
+go14/pkg/${GO_PLATFORM}/crypto/aes.a
+go14/pkg/${GO_PLATFORM}/crypto/cipher.a
+go14/pkg/${GO_PLATFORM}/crypto/des.a
+go14/pkg/${GO_PLATFORM}/crypto/dsa.a
+go14/pkg/${GO_PLATFORM}/crypto/ecdsa.a
+go14/pkg/${GO_PLATFORM}/crypto/elliptic.a
+go14/pkg/${GO_PLATFORM}/crypto/hmac.a
+go14/pkg/${GO_PLATFORM}/crypto/md5.a
+go14/pkg/${GO_PLATFORM}/crypto/rand.a
+go14/pkg/${GO_PLATFORM}/crypto/rc4.a
+go14/pkg/${GO_PLATFORM}/crypto/rsa.a
+go14/pkg/${GO_PLATFORM}/crypto/sha1.a
+go14/pkg/${GO_PLATFORM}/crypto/sha256.a
+go14/pkg/${GO_PLATFORM}/crypto/sha512.a
+go14/pkg/${GO_PLATFORM}/crypto/subtle.a
+go14/pkg/${GO_PLATFORM}/crypto/tls.a
+go14/pkg/${GO_PLATFORM}/crypto/x509.a
+go14/pkg/${GO_PLATFORM}/crypto/x509/pkix.a
+go14/pkg/${GO_PLATFORM}/database/sql.a
+go14/pkg/${GO_PLATFORM}/database/sql/driver.a
+go14/pkg/${GO_PLATFORM}/debug/dwarf.a
+go14/pkg/${GO_PLATFORM}/debug/elf.a
+go14/pkg/${GO_PLATFORM}/debug/gosym.a
+go14/pkg/${GO_PLATFORM}/debug/macho.a
+go14/pkg/${GO_PLATFORM}/debug/pe.a
+go14/pkg/${GO_PLATFORM}/debug/plan9obj.a
+go14/pkg/${GO_PLATFORM}/encoding.a
+go14/pkg/${GO_PLATFORM}/encoding/ascii85.a
+go14/pkg/${GO_PLATFORM}/encoding/asn1.a
+go14/pkg/${GO_PLATFORM}/encoding/base32.a
+go14/pkg/${GO_PLATFORM}/encoding/base64.a
+go14/pkg/${GO_PLATFORM}/encoding/binary.a
+go14/pkg/${GO_PLATFORM}/encoding/csv.a
+go14/pkg/${GO_PLATFORM}/encoding/gob.a
+go14/pkg/${GO_PLATFORM}/encoding/hex.a
+go14/pkg/${GO_PLATFORM}/encoding/json.a
+go14/pkg/${GO_PLATFORM}/encoding/pem.a
+go14/pkg/${GO_PLATFORM}/encoding/xml.a
+go14/pkg/${GO_PLATFORM}/errors.a
+go14/pkg/${GO_PLATFORM}/expvar.a
+go14/pkg/${GO_PLATFORM}/flag.a
+go14/pkg/${GO_PLATFORM}/fmt.a
+go14/pkg/${GO_PLATFORM}/funcdata.h
+go14/pkg/${GO_PLATFORM}/go/ast.a
+go14/pkg/${GO_PLATFORM}/go/build.a
+go14/pkg/${GO_PLATFORM}/go/doc.a
+go14/pkg/${GO_PLATFORM}/go/format.a
+go14/pkg/${GO_PLATFORM}/go/parser.a
+go14/pkg/${GO_PLATFORM}/go/printer.a
+go14/pkg/${GO_PLATFORM}/go/scanner.a
+go14/pkg/${GO_PLATFORM}/go/token.a
+go14/pkg/${GO_PLATFORM}/hash.a
+go14/pkg/${GO_PLATFORM}/hash/adler32.a
+go14/pkg/${GO_PLATFORM}/hash/crc32.a
+go14/pkg/${GO_PLATFORM}/hash/crc64.a
+go14/pkg/${GO_PLATFORM}/hash/fnv.a
+go14/pkg/${GO_PLATFORM}/html.a
+go14/pkg/${GO_PLATFORM}/html/template.a
+go14/pkg/${GO_PLATFORM}/image.a
+go14/pkg/${GO_PLATFORM}/image/color.a
+go14/pkg/${GO_PLATFORM}/image/color/palette.a
+go14/pkg/${GO_PLATFORM}/image/draw.a
+go14/pkg/${GO_PLATFORM}/image/gif.a
+go14/pkg/${GO_PLATFORM}/image/jpeg.a
+go14/pkg/${GO_PLATFORM}/image/png.a
+go14/pkg/${GO_PLATFORM}/index/suffixarray.a
+go14/pkg/${GO_PLATFORM}/io.a
+go14/pkg/${GO_PLATFORM}/io/ioutil.a
+go14/pkg/${GO_PLATFORM}/log.a
+go14/pkg/${GO_PLATFORM}/log/syslog.a
+go14/pkg/${GO_PLATFORM}/math.a
+go14/pkg/${GO_PLATFORM}/math/big.a
+go14/pkg/${GO_PLATFORM}/math/cmplx.a
+go14/pkg/${GO_PLATFORM}/math/rand.a
+go14/pkg/${GO_PLATFORM}/mime.a
+go14/pkg/${GO_PLATFORM}/mime/multipart.a
+go14/pkg/${GO_PLATFORM}/net.a
+go14/pkg/${GO_PLATFORM}/net/http.a
+go14/pkg/${GO_PLATFORM}/net/http/cgi.a
+go14/pkg/${GO_PLATFORM}/net/http/cookiejar.a
+go14/pkg/${GO_PLATFORM}/net/http/fcgi.a
+go14/pkg/${GO_PLATFORM}/net/http/httptest.a
+go14/pkg/${GO_PLATFORM}/net/http/httputil.a
+go14/pkg/${GO_PLATFORM}/net/http/internal.a
+go14/pkg/${GO_PLATFORM}/net/http/pprof.a
+go14/pkg/${GO_PLATFORM}/net/mail.a
+go14/pkg/${GO_PLATFORM}/net/rpc.a
+go14/pkg/${GO_PLATFORM}/net/rpc/jsonrpc.a
+go14/pkg/${GO_PLATFORM}/net/smtp.a
+go14/pkg/${GO_PLATFORM}/net/textproto.a
+go14/pkg/${GO_PLATFORM}/net/url.a
+go14/pkg/${GO_PLATFORM}/os.a
+go14/pkg/${GO_PLATFORM}/os/exec.a
+go14/pkg/${GO_PLATFORM}/os/signal.a
+go14/pkg/${GO_PLATFORM}/os/user.a
+go14/pkg/${GO_PLATFORM}/path.a
+go14/pkg/${GO_PLATFORM}/path/filepath.a
+go14/pkg/${GO_PLATFORM}/reflect.a
+go14/pkg/${GO_PLATFORM}/regexp.a
+go14/pkg/${GO_PLATFORM}/regexp/syntax.a
+go14/pkg/${GO_PLATFORM}/runtime.a
+go14/pkg/${GO_PLATFORM}/runtime.h
+go14/pkg/${GO_PLATFORM}/runtime/cgo.a
+go14/pkg/${GO_PLATFORM}/runtime/debug.a
+go14/pkg/${GO_PLATFORM}/runtime/pprof.a
+go14/pkg/${GO_PLATFORM}/runtime/race.a
+go14/pkg/${GO_PLATFORM}/sort.a
+go14/pkg/${GO_PLATFORM}/strconv.a
+go14/pkg/${GO_PLATFORM}/strings.a
+go14/pkg/${GO_PLATFORM}/sync.a
+go14/pkg/${GO_PLATFORM}/sync/atomic.a
+go14/pkg/${GO_PLATFORM}/syscall.a
+go14/pkg/${GO_PLATFORM}/testing.a
+go14/pkg/${GO_PLATFORM}/testing/iotest.a
+go14/pkg/${GO_PLATFORM}/testing/quick.a
+go14/pkg/${GO_PLATFORM}/text/scanner.a
+go14/pkg/${GO_PLATFORM}/text/tabwriter.a
+go14/pkg/${GO_PLATFORM}/text/template.a
+go14/pkg/${GO_PLATFORM}/text/template/parse.a
+go14/pkg/${GO_PLATFORM}/textflag.h
+go14/pkg/${GO_PLATFORM}/time.a
+go14/pkg/${GO_PLATFORM}/unicode.a
+go14/pkg/${GO_PLATFORM}/unicode/utf16.a
+go14/pkg/${GO_PLATFORM}/unicode/utf8.a
+go14/pkg/tool/${GO_PLATFORM}/${GOCHAR}a
+go14/pkg/tool/${GO_PLATFORM}/${GOCHAR}c
+go14/pkg/tool/${GO_PLATFORM}/${GOCHAR}g
+go14/pkg/tool/${GO_PLATFORM}/${GOCHAR}l
+go14/pkg/tool/${GO_PLATFORM}/addr2line
+go14/pkg/tool/${GO_PLATFORM}/cgo
+go14/pkg/tool/${GO_PLATFORM}/dist
+go14/pkg/tool/${GO_PLATFORM}/fix
+go14/pkg/tool/${GO_PLATFORM}/nm
+go14/pkg/tool/${GO_PLATFORM}/objdump
+go14/pkg/tool/${GO_PLATFORM}/pack
+go14/pkg/tool/${GO_PLATFORM}/pprof
+go14/pkg/tool/${GO_PLATFORM}/yacc
+go14/robots.txt
+go14/src/Make.dist
+go14/src/all.bash
+go14/src/all.bat
+go14/src/all.rc
+go14/src/androidtest.bash
+go14/src/archive/tar/common.go
+go14/src/archive/tar/example_test.go
+go14/src/archive/tar/reader.go
+go14/src/archive/tar/reader_test.go
+go14/src/archive/tar/stat_atim.go
+go14/src/archive/tar/stat_atimespec.go
+go14/src/archive/tar/stat_unix.go
+go14/src/archive/tar/tar_test.go
+go14/src/archive/tar/testdata/gnu.tar
+go14/src/archive/tar/testdata/nil-uid.tar
+go14/src/archive/tar/testdata/pax.tar
+go14/src/archive/tar/testdata/small.txt
+go14/src/archive/tar/testdata/small2.txt
+go14/src/archive/tar/testdata/sparse-formats.tar
+go14/src/archive/tar/testdata/star.tar
+go14/src/archive/tar/testdata/ustar.tar
+go14/src/archive/tar/testdata/v7.tar
+go14/src/archive/tar/testdata/writer-big-long.tar
+go14/src/archive/tar/testdata/writer-big.tar
+go14/src/archive/tar/testdata/writer.tar
+go14/src/archive/tar/testdata/xattrs.tar
+go14/src/archive/tar/writer.go
+go14/src/archive/tar/writer_test.go
+go14/src/archive/zip/example_test.go
+go14/src/archive/zip/reader.go
+go14/src/archive/zip/reader_test.go
+go14/src/archive/zip/register.go
+go14/src/archive/zip/struct.go
+go14/src/archive/zip/testdata/crc32-not-streamed.zip
+go14/src/archive/zip/testdata/dd.zip
+go14/src/archive/zip/testdata/go-no-datadesc-sig.zip
+go14/src/archive/zip/testdata/go-with-datadesc-sig.zip
+go14/src/archive/zip/testdata/gophercolor16x16.png
+go14/src/archive/zip/testdata/readme.notzip
+go14/src/archive/zip/testdata/readme.zip
+go14/src/archive/zip/testdata/symlink.zip
+go14/src/archive/zip/testdata/test-trailing-junk.zip
+go14/src/archive/zip/testdata/test.zip
+go14/src/archive/zip/testdata/unix.zip
+go14/src/archive/zip/testdata/winxp.zip
+go14/src/archive/zip/testdata/zip64-2.zip
+go14/src/archive/zip/testdata/zip64.zip
+go14/src/archive/zip/writer.go
+go14/src/archive/zip/writer_test.go
+go14/src/archive/zip/zip_test.go
+go14/src/bufio/bufio.go
+go14/src/bufio/bufio_test.go
+go14/src/bufio/example_test.go
+go14/src/bufio/export_test.go
+go14/src/bufio/scan.go
+go14/src/bufio/scan_test.go
+go14/src/builtin/builtin.go
+go14/src/bytes/buffer.go
+go14/src/bytes/buffer_test.go
+go14/src/bytes/bytes.go
+go14/src/bytes/bytes_decl.go
+go14/src/bytes/bytes_test.go
+go14/src/bytes/compare_test.go
+go14/src/bytes/equal_test.go
+go14/src/bytes/example_test.go
+go14/src/bytes/export_test.go
+go14/src/bytes/reader.go
+go14/src/bytes/reader_test.go
+go14/src/clean.bash
+go14/src/clean.bat
+go14/src/clean.rc
+go14/src/cmd/5a/Makefile
+go14/src/cmd/5a/a.h
+go14/src/cmd/5a/a.y
+go14/src/cmd/5a/doc.go
+go14/src/cmd/5a/lex.c
+go14/src/cmd/5a/y.tab.c
+go14/src/cmd/5a/y.tab.h
+go14/src/cmd/5c/Makefile
+go14/src/cmd/5c/cgen.c
+go14/src/cmd/5c/doc.go
+go14/src/cmd/5c/gc.h
+go14/src/cmd/5c/list.c
+go14/src/cmd/5c/mul.c
+go14/src/cmd/5c/peep.c
+go14/src/cmd/5c/reg.c
+go14/src/cmd/5c/sgen.c
+go14/src/cmd/5c/swt.c
+go14/src/cmd/5c/txt.c
+go14/src/cmd/5g/Makefile
+go14/src/cmd/5g/cgen.c
+go14/src/cmd/5g/cgen64.c
+go14/src/cmd/5g/doc.go
+go14/src/cmd/5g/galign.c
+go14/src/cmd/5g/gg.h
+go14/src/cmd/5g/ggen.c
+go14/src/cmd/5g/gobj.c
+go14/src/cmd/5g/gsubr.c
+go14/src/cmd/5g/opt.h
+go14/src/cmd/5g/peep.c
+go14/src/cmd/5g/prog.c
+go14/src/cmd/5g/reg.c
+go14/src/cmd/5l/5.out.h
+go14/src/cmd/5l/Makefile
+go14/src/cmd/5l/asm.c
+go14/src/cmd/5l/doc.go
+go14/src/cmd/5l/l.h
+go14/src/cmd/5l/list.c
+go14/src/cmd/5l/obj.c
+go14/src/cmd/6a/Makefile
+go14/src/cmd/6a/a.h
+go14/src/cmd/6a/a.y
+go14/src/cmd/6a/doc.go
+go14/src/cmd/6a/lex.c
+go14/src/cmd/6a/y.tab.c
+go14/src/cmd/6a/y.tab.h
+go14/src/cmd/6c/Makefile
+go14/src/cmd/6c/cgen.c
+go14/src/cmd/6c/div.c
+go14/src/cmd/6c/doc.go
+go14/src/cmd/6c/gc.h
+go14/src/cmd/6c/list.c
+go14/src/cmd/6c/machcap.c
+go14/src/cmd/6c/mul.c
+go14/src/cmd/6c/peep.c
+go14/src/cmd/6c/reg.c
+go14/src/cmd/6c/sgen.c
+go14/src/cmd/6c/swt.c
+go14/src/cmd/6c/txt.c
+go14/src/cmd/6g/Makefile
+go14/src/cmd/6g/cgen.c
+go14/src/cmd/6g/doc.go
+go14/src/cmd/6g/galign.c
+go14/src/cmd/6g/gg.h
+go14/src/cmd/6g/ggen.c
+go14/src/cmd/6g/gobj.c
+go14/src/cmd/6g/gsubr.c
+go14/src/cmd/6g/opt.h
+go14/src/cmd/6g/peep.c
+go14/src/cmd/6g/prog.c
+go14/src/cmd/6g/reg.c
+go14/src/cmd/6l/6.out.h
+go14/src/cmd/6l/Makefile
+go14/src/cmd/6l/asm.c
+go14/src/cmd/6l/doc.go
+go14/src/cmd/6l/l.h
+go14/src/cmd/6l/list.c
+go14/src/cmd/6l/obj.c
+go14/src/cmd/8a/Makefile
+go14/src/cmd/8a/a.h
+go14/src/cmd/8a/a.y
+go14/src/cmd/8a/doc.go
+go14/src/cmd/8a/lex.c
+go14/src/cmd/8a/y.tab.c
+go14/src/cmd/8a/y.tab.h
+go14/src/cmd/8c/Makefile
+go14/src/cmd/8c/cgen.c
+go14/src/cmd/8c/cgen64.c
+go14/src/cmd/8c/div.c
+go14/src/cmd/8c/doc.go
+go14/src/cmd/8c/gc.h
+go14/src/cmd/8c/list.c
+go14/src/cmd/8c/machcap.c
+go14/src/cmd/8c/mul.c
+go14/src/cmd/8c/peep.c
+go14/src/cmd/8c/reg.c
+go14/src/cmd/8c/sgen.c
+go14/src/cmd/8c/swt.c
+go14/src/cmd/8c/txt.c
+go14/src/cmd/8g/Makefile
+go14/src/cmd/8g/cgen.c
+go14/src/cmd/8g/cgen64.c
+go14/src/cmd/8g/doc.go
+go14/src/cmd/8g/galign.c
+go14/src/cmd/8g/gg.h
+go14/src/cmd/8g/ggen.c
+go14/src/cmd/8g/gobj.c
+go14/src/cmd/8g/gsubr.c
+go14/src/cmd/8g/opt.h
+go14/src/cmd/8g/peep.c
+go14/src/cmd/8g/prog.c
+go14/src/cmd/8g/reg.c
+go14/src/cmd/8l/8.out.h
+go14/src/cmd/8l/Makefile
+go14/src/cmd/8l/asm.c
+go14/src/cmd/8l/doc.go
+go14/src/cmd/8l/l.h
+go14/src/cmd/8l/list.c
+go14/src/cmd/8l/obj.c
+go14/src/cmd/addr2line/addr2line_test.go
+go14/src/cmd/addr2line/main.go
+go14/src/cmd/api/goapi.go
+go14/src/cmd/api/goapi_test.go
+go14/src/cmd/api/run.go
+go14/src/cmd/api/testdata/src/pkg/p1/golden.txt
+go14/src/cmd/api/testdata/src/pkg/p1/p1.go
+go14/src/cmd/api/testdata/src/pkg/p2/golden.txt
+go14/src/cmd/api/testdata/src/pkg/p2/p2.go
+go14/src/cmd/api/testdata/src/pkg/p3/golden.txt
+go14/src/cmd/api/testdata/src/pkg/p3/p3.go
+go14/src/cmd/cc/Makefile
+go14/src/cmd/cc/acid.c
+go14/src/cmd/cc/bits.c
+go14/src/cmd/cc/cc.h
+go14/src/cmd/cc/cc.y
+go14/src/cmd/cc/com.c
+go14/src/cmd/cc/com64.c
+go14/src/cmd/cc/dcl.c
+go14/src/cmd/cc/doc.go
+go14/src/cmd/cc/dpchk.c
+go14/src/cmd/cc/funct.c
+go14/src/cmd/cc/godefs.c
+go14/src/cmd/cc/lex.c
+go14/src/cmd/cc/lexbody
+go14/src/cmd/cc/mac.c
+go14/src/cmd/cc/macbody
+go14/src/cmd/cc/omachcap.c
+go14/src/cmd/cc/pgen.c
+go14/src/cmd/cc/pswt.c
+go14/src/cmd/cc/scon.c
+go14/src/cmd/cc/sub.c
+go14/src/cmd/cc/y.tab.c
+go14/src/cmd/cc/y.tab.h
+go14/src/cmd/cgo/ast.go
+go14/src/cmd/cgo/doc.go
+go14/src/cmd/cgo/gcc.go
+go14/src/cmd/cgo/godefs.go
+go14/src/cmd/cgo/main.go
+go14/src/cmd/cgo/out.go
+go14/src/cmd/cgo/util.go
+go14/src/cmd/cgo/zdefaultcc.go
+go14/src/cmd/dist/README
+go14/src/cmd/dist/a.h
+go14/src/cmd/dist/arg.h
+go14/src/cmd/dist/arm.c
+go14/src/cmd/dist/buf.c
+go14/src/cmd/dist/build.c
+go14/src/cmd/dist/buildgc.c
+go14/src/cmd/dist/buildgo.c
+go14/src/cmd/dist/buildruntime.c
+go14/src/cmd/dist/main.c
+go14/src/cmd/dist/plan9.c
+go14/src/cmd/dist/unix.c
+go14/src/cmd/dist/windows.c
+go14/src/cmd/fix/doc.go
+go14/src/cmd/fix/fix.go
+go14/src/cmd/fix/import_test.go
+go14/src/cmd/fix/main.go
+go14/src/cmd/fix/main_test.go
+go14/src/cmd/fix/netipv6zone.go
+go14/src/cmd/fix/netipv6zone_test.go
+go14/src/cmd/fix/printerconfig.go
+go14/src/cmd/fix/printerconfig_test.go
+go14/src/cmd/fix/typecheck.go
+go14/src/cmd/gc/Makefile
+go14/src/cmd/gc/align.c
+go14/src/cmd/gc/array.c
+go14/src/cmd/gc/bisonerrors
+go14/src/cmd/gc/bits.c
+go14/src/cmd/gc/builtin.c
+go14/src/cmd/gc/bv.c
+go14/src/cmd/gc/closure.c
+go14/src/cmd/gc/const.c
+go14/src/cmd/gc/cplx.c
+go14/src/cmd/gc/dcl.c
+go14/src/cmd/gc/doc.go
+go14/src/cmd/gc/esc.c
+go14/src/cmd/gc/export.c
+go14/src/cmd/gc/fmt.c
+go14/src/cmd/gc/gen.c
+go14/src/cmd/gc/go.errors
+go14/src/cmd/gc/go.h
+go14/src/cmd/gc/go.y
+go14/src/cmd/gc/init.c
+go14/src/cmd/gc/inl.c
+go14/src/cmd/gc/lex.c
+go14/src/cmd/gc/md5.c
+go14/src/cmd/gc/md5.h
+go14/src/cmd/gc/mkbuiltin
+go14/src/cmd/gc/mkbuiltin1.c
+go14/src/cmd/gc/mkopnames
+go14/src/cmd/gc/mparith1.c
+go14/src/cmd/gc/mparith2.c
+go14/src/cmd/gc/mparith3.c
+go14/src/cmd/gc/obj.c
+go14/src/cmd/gc/opnames.h
+go14/src/cmd/gc/order.c
+go14/src/cmd/gc/pgen.c
+go14/src/cmd/gc/plive.c
+go14/src/cmd/gc/popt.c
+go14/src/cmd/gc/popt.h
+go14/src/cmd/gc/racewalk.c
+go14/src/cmd/gc/range.c
+go14/src/cmd/gc/reflect.c
+go14/src/cmd/gc/runtime.go
+go14/src/cmd/gc/select.c
+go14/src/cmd/gc/sinit.c
+go14/src/cmd/gc/subr.c
+go14/src/cmd/gc/swt.c
+go14/src/cmd/gc/typecheck.c
+go14/src/cmd/gc/unsafe.c
+go14/src/cmd/gc/unsafe.go
+go14/src/cmd/gc/walk.c
+go14/src/cmd/gc/y.tab.c
+go14/src/cmd/gc/y.tab.h
+go14/src/cmd/gc/yerr.h
+go14/src/cmd/go/bootstrap.go
+go14/src/cmd/go/build.go
+go14/src/cmd/go/clean.go
+go14/src/cmd/go/context.go
+go14/src/cmd/go/discovery.go
+go14/src/cmd/go/doc.go
+go14/src/cmd/go/env.go
+go14/src/cmd/go/fix.go
+go14/src/cmd/go/fmt.go
+go14/src/cmd/go/generate.go
+go14/src/cmd/go/generate_test.go
+go14/src/cmd/go/get.go
+go14/src/cmd/go/go11.go
+go14/src/cmd/go/go_windows_test.go
+go14/src/cmd/go/help.go
+go14/src/cmd/go/http.go
+go14/src/cmd/go/list.go
+go14/src/cmd/go/main.go
+go14/src/cmd/go/match_test.go
+go14/src/cmd/go/mkdoc.sh
+go14/src/cmd/go/pkg.go
+go14/src/cmd/go/pkg_test.go
+go14/src/cmd/go/run.go
+go14/src/cmd/go/script
+go14/src/cmd/go/script.txt
+go14/src/cmd/go/signal.go
+go14/src/cmd/go/signal_notunix.go
+go14/src/cmd/go/signal_unix.go
+go14/src/cmd/go/tag_test.go
+go14/src/cmd/go/test.bash
+go14/src/cmd/go/test.go
+go14/src/cmd/go/testdata/cgocover/p.go
+go14/src/cmd/go/testdata/cgocover/p_test.go
+go14/src/cmd/go/testdata/dep_test.go
+go14/src/cmd/go/testdata/example1_test.go
+go14/src/cmd/go/testdata/example2_test.go
+go14/src/cmd/go/testdata/generate/test1.go
+go14/src/cmd/go/testdata/generate/test2.go
+go14/src/cmd/go/testdata/generate/test3.go
+go14/src/cmd/go/testdata/importcom/bad.go
+go14/src/cmd/go/testdata/importcom/conflict.go
+go14/src/cmd/go/testdata/importcom/src/bad/bad.go
+go14/src/cmd/go/testdata/importcom/src/conflict/a.go
+go14/src/cmd/go/testdata/importcom/src/conflict/b.go
+go14/src/cmd/go/testdata/importcom/src/works/x/x.go
+go14/src/cmd/go/testdata/importcom/src/works/x/x1.go
+go14/src/cmd/go/testdata/importcom/src/wrongplace/x.go
+go14/src/cmd/go/testdata/importcom/works.go
+go14/src/cmd/go/testdata/importcom/wrongplace.go
+go14/src/cmd/go/testdata/local/easy.go
+go14/src/cmd/go/testdata/local/easysub/easysub.go
+go14/src/cmd/go/testdata/local/easysub/main.go
+go14/src/cmd/go/testdata/local/hard.go
+go14/src/cmd/go/testdata/local/sub/sub.go
+go14/src/cmd/go/testdata/local/sub/sub/subsub.go
+go14/src/cmd/go/testdata/norunexample/example_test.go
+go14/src/cmd/go/testdata/norunexample/test_test.go
+go14/src/cmd/go/testdata/shadow/root1/src/foo/foo.go
+go14/src/cmd/go/testdata/shadow/root1/src/math/math.go
+go14/src/cmd/go/testdata/shadow/root2/src/foo/foo.go
+go14/src/cmd/go/testdata/src/badc/x.c
+go14/src/cmd/go/testdata/src/badc/x.go
+go14/src/cmd/go/testdata/src/badpkg/x.go
+go14/src/cmd/go/testdata/src/badtest/badexec/x_test.go
+go14/src/cmd/go/testdata/src/badtest/badsyntax/x.go
+go14/src/cmd/go/testdata/src/badtest/badsyntax/x_test.go
+go14/src/cmd/go/testdata/src/badtest/badvar/x.go
+go14/src/cmd/go/testdata/src/badtest/badvar/x_test.go
+go14/src/cmd/go/testdata/src/cgotest/m.go
+go14/src/cmd/go/testdata/src/go-cmd-test/helloworld.go
+go14/src/cmd/go/testdata/src/main_test/m.go
+go14/src/cmd/go/testdata/src/main_test/m_test.go
+go14/src/cmd/go/testdata/src/notest/hello.go
+go14/src/cmd/go/testdata/src/syntaxerror/x.go
+go14/src/cmd/go/testdata/src/syntaxerror/x_test.go
+go14/src/cmd/go/testdata/src/testcycle/p1/p1.go
+go14/src/cmd/go/testdata/src/testcycle/p1/p1_test.go
+go14/src/cmd/go/testdata/src/testcycle/p2/p2.go
+go14/src/cmd/go/testdata/src/testcycle/p3/p3.go
+go14/src/cmd/go/testdata/src/testcycle/p3/p3_test.go
+go14/src/cmd/go/testdata/src/vetpkg/a_test.go
+go14/src/cmd/go/testdata/src/vetpkg/b.go
+go14/src/cmd/go/testdata/src/xtestonly/f.go
+go14/src/cmd/go/testdata/src/xtestonly/f_test.go
+go14/src/cmd/go/testdata/standalone_test.go
+go14/src/cmd/go/testdata/testimport/p.go
+go14/src/cmd/go/testdata/testimport/p1/p1.go
+go14/src/cmd/go/testdata/testimport/p2/p2.go
+go14/src/cmd/go/testdata/testimport/p_test.go
+go14/src/cmd/go/testdata/testimport/x_test.go
+go14/src/cmd/go/testdata/testinternal/p.go
+go14/src/cmd/go/testdata/testinternal2/p.go
+go14/src/cmd/go/testdata/testinternal2/x/y/z/internal/w/w.go
+go14/src/cmd/go/testdata/testonly/p_test.go
+go14/src/cmd/go/testflag.go
+go14/src/cmd/go/testgo.go
+go14/src/cmd/go/tool.go
+go14/src/cmd/go/vcs.go
+go14/src/cmd/go/vcs_test.go
+go14/src/cmd/go/version.go
+go14/src/cmd/go/vet.go
+go14/src/cmd/go/zdefaultcc.go
+go14/src/cmd/gofmt/doc.go
+go14/src/cmd/gofmt/gofmt.go
+go14/src/cmd/gofmt/gofmt_test.go
+go14/src/cmd/gofmt/long_test.go
+go14/src/cmd/gofmt/rewrite.go
+go14/src/cmd/gofmt/simplify.go
+go14/src/cmd/gofmt/testdata/comments.golden
+go14/src/cmd/gofmt/testdata/comments.input
+go14/src/cmd/gofmt/testdata/composites.golden
+go14/src/cmd/gofmt/testdata/composites.input
+go14/src/cmd/gofmt/testdata/crlf.golden
+go14/src/cmd/gofmt/testdata/crlf.input
+go14/src/cmd/gofmt/testdata/emptydecl.golden
+go14/src/cmd/gofmt/testdata/emptydecl.input
+go14/src/cmd/gofmt/testdata/import.golden
+go14/src/cmd/gofmt/testdata/import.input
+go14/src/cmd/gofmt/testdata/old.golden
+go14/src/cmd/gofmt/testdata/old.input
+go14/src/cmd/gofmt/testdata/ranges.golden
+go14/src/cmd/gofmt/testdata/ranges.input
+go14/src/cmd/gofmt/testdata/rewrite1.golden
+go14/src/cmd/gofmt/testdata/rewrite1.input
+go14/src/cmd/gofmt/testdata/rewrite2.golden
+go14/src/cmd/gofmt/testdata/rewrite2.input
+go14/src/cmd/gofmt/testdata/rewrite3.golden
+go14/src/cmd/gofmt/testdata/rewrite3.input
+go14/src/cmd/gofmt/testdata/rewrite4.golden
+go14/src/cmd/gofmt/testdata/rewrite4.input
+go14/src/cmd/gofmt/testdata/rewrite5.golden
+go14/src/cmd/gofmt/testdata/rewrite5.input
+go14/src/cmd/gofmt/testdata/rewrite6.golden
+go14/src/cmd/gofmt/testdata/rewrite6.input
+go14/src/cmd/gofmt/testdata/rewrite7.golden
+go14/src/cmd/gofmt/testdata/rewrite7.input
+go14/src/cmd/gofmt/testdata/rewrite8.golden
+go14/src/cmd/gofmt/testdata/rewrite8.input
+go14/src/cmd/gofmt/testdata/slices1.golden
+go14/src/cmd/gofmt/testdata/slices1.input
+go14/src/cmd/gofmt/testdata/slices2.golden
+go14/src/cmd/gofmt/testdata/slices2.input
+go14/src/cmd/gofmt/testdata/stdin1.golden
+go14/src/cmd/gofmt/testdata/stdin1.input
+go14/src/cmd/gofmt/testdata/stdin2.golden
+go14/src/cmd/gofmt/testdata/stdin2.input
+go14/src/cmd/gofmt/testdata/stdin3.golden
+go14/src/cmd/gofmt/testdata/stdin3.input
+go14/src/cmd/gofmt/testdata/stdin4.golden
+go14/src/cmd/gofmt/testdata/stdin4.input
+go14/src/cmd/gofmt/testdata/stdin5.golden
+go14/src/cmd/gofmt/testdata/stdin5.input
+go14/src/cmd/gofmt/testdata/stdin6.golden
+go14/src/cmd/gofmt/testdata/stdin6.input
+go14/src/cmd/gofmt/testdata/stdin7.golden
+go14/src/cmd/gofmt/testdata/stdin7.input
+go14/src/cmd/gofmt/testdata/typeswitch.golden
+go14/src/cmd/gofmt/testdata/typeswitch.input
+go14/src/cmd/internal/goobj/read.go
+go14/src/cmd/internal/goobj/read_test.go
+go14/src/cmd/internal/objfile/disasm.go
+go14/src/cmd/internal/objfile/elf.go
+go14/src/cmd/internal/objfile/goobj.go
+go14/src/cmd/internal/objfile/macho.go
+go14/src/cmd/internal/objfile/objfile.go
+go14/src/cmd/internal/objfile/pe.go
+go14/src/cmd/internal/objfile/plan9obj.go
+go14/src/cmd/internal/rsc.io/arm/armasm/Makefile
+go14/src/cmd/internal/rsc.io/arm/armasm/decode.go
+go14/src/cmd/internal/rsc.io/arm/armasm/decode_test.go
+go14/src/cmd/internal/rsc.io/arm/armasm/ext_test.go
+go14/src/cmd/internal/rsc.io/arm/armasm/gnu.go
+go14/src/cmd/internal/rsc.io/arm/armasm/inst.go
+go14/src/cmd/internal/rsc.io/arm/armasm/objdump_test.go
+go14/src/cmd/internal/rsc.io/arm/armasm/objdumpext_test.go
+go14/src/cmd/internal/rsc.io/arm/armasm/plan9x.go
+go14/src/cmd/internal/rsc.io/arm/armasm/tables.go
+go14/src/cmd/internal/rsc.io/arm/armasm/testdata/Makefile
+go14/src/cmd/internal/rsc.io/arm/armasm/testdata/decode.txt
+go14/src/cmd/internal/rsc.io/x86/x86asm/Makefile
+go14/src/cmd/internal/rsc.io/x86/x86asm/decode.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/decode_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/ext_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/gnu.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/inst.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/inst_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/intel.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/objdump_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/objdumpext_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/plan9ext_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/plan9x.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/plan9x_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/tables.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/testdata/Makefile
+go14/src/cmd/internal/rsc.io/x86/x86asm/testdata/decode.txt
+go14/src/cmd/internal/rsc.io/x86/x86asm/xed_test.go
+go14/src/cmd/internal/rsc.io/x86/x86asm/xedext_test.go
+go14/src/cmd/ld/data.c
+go14/src/cmd/ld/decodesym.c
+go14/src/cmd/ld/doc.go
+go14/src/cmd/ld/dwarf.c
+go14/src/cmd/ld/dwarf.h
+go14/src/cmd/ld/dwarf_defs.h
+go14/src/cmd/ld/elf.c
+go14/src/cmd/ld/elf.h
+go14/src/cmd/ld/go.c
+go14/src/cmd/ld/ldelf.c
+go14/src/cmd/ld/ldmacho.c
+go14/src/cmd/ld/ldpe.c
+go14/src/cmd/ld/lib.c
+go14/src/cmd/ld/lib.h
+go14/src/cmd/ld/macho.c
+go14/src/cmd/ld/macho.h
+go14/src/cmd/ld/pcln.c
+go14/src/cmd/ld/pe.c
+go14/src/cmd/ld/pe.h
+go14/src/cmd/ld/pobj.c
+go14/src/cmd/ld/symtab.c
+go14/src/cmd/ld/textflag.h
+go14/src/cmd/nm/doc.go
+go14/src/cmd/nm/nm.go
+go14/src/cmd/nm/nm_test.go
+go14/src/cmd/objdump/main.go
+go14/src/cmd/objdump/objdump_test.go
+go14/src/cmd/objdump/testdata/fmthello.go
+go14/src/cmd/pack/doc.go
+go14/src/cmd/pack/pack.go
+go14/src/cmd/pack/pack_test.go
+go14/src/cmd/pprof/README
+go14/src/cmd/pprof/doc.go
+go14/src/cmd/pprof/internal/commands/commands.go
+go14/src/cmd/pprof/internal/driver/driver.go
+go14/src/cmd/pprof/internal/driver/interactive.go
+go14/src/cmd/pprof/internal/fetch/fetch.go
+go14/src/cmd/pprof/internal/plugin/plugin.go
+go14/src/cmd/pprof/internal/profile/encode.go
+go14/src/cmd/pprof/internal/profile/filter.go
+go14/src/cmd/pprof/internal/profile/legacy_profile.go
+go14/src/cmd/pprof/internal/profile/profile.go
+go14/src/cmd/pprof/internal/profile/proto.go
+go14/src/cmd/pprof/internal/profile/prune.go
+go14/src/cmd/pprof/internal/report/report.go
+go14/src/cmd/pprof/internal/report/source.go
+go14/src/cmd/pprof/internal/report/source_html.go
+go14/src/cmd/pprof/internal/svg/svg.go
+go14/src/cmd/pprof/internal/symbolizer/symbolizer.go
+go14/src/cmd/pprof/internal/symbolz/symbolz.go
+go14/src/cmd/pprof/internal/tempfile/tempfile.go
+go14/src/cmd/pprof/pprof.go
+go14/src/cmd/yacc/doc.go
+go14/src/cmd/yacc/testdata/expr/README
+go14/src/cmd/yacc/testdata/expr/expr.y
+go14/src/cmd/yacc/testdata/expr/main.go
+go14/src/cmd/yacc/yacc.go
+go14/src/compress/bzip2/bit_reader.go
+go14/src/compress/bzip2/bzip2.go
+go14/src/compress/bzip2/bzip2_test.go
+go14/src/compress/bzip2/huffman.go
+go14/src/compress/bzip2/move_to_front.go
+go14/src/compress/bzip2/testdata/Mark.Twain-Tom.Sawyer.txt.bz2
+go14/src/compress/bzip2/testdata/e.txt.bz2
+go14/src/compress/flate/copy.go
+go14/src/compress/flate/copy_test.go
+go14/src/compress/flate/deflate.go
+go14/src/compress/flate/deflate_test.go
+go14/src/compress/flate/fixedhuff.go
+go14/src/compress/flate/flate_test.go
+go14/src/compress/flate/gen.go
+go14/src/compress/flate/huffman_bit_writer.go
+go14/src/compress/flate/huffman_code.go
+go14/src/compress/flate/inflate.go
+go14/src/compress/flate/inflate_test.go
+go14/src/compress/flate/reader_test.go
+go14/src/compress/flate/reverse_bits.go
+go14/src/compress/flate/token.go
+go14/src/compress/flate/writer_test.go
+go14/src/compress/gzip/gunzip.go
+go14/src/compress/gzip/gunzip_test.go
+go14/src/compress/gzip/gzip.go
+go14/src/compress/gzip/gzip_test.go
+go14/src/compress/gzip/testdata/issue6550.gz
+go14/src/compress/lzw/reader.go
+go14/src/compress/lzw/reader_test.go
+go14/src/compress/lzw/writer.go
+go14/src/compress/lzw/writer_test.go
+go14/src/compress/testdata/Mark.Twain-Tom.Sawyer.txt
+go14/src/compress/testdata/e.txt
+go14/src/compress/testdata/pi.txt
+go14/src/compress/zlib/example_test.go
+go14/src/compress/zlib/reader.go
+go14/src/compress/zlib/reader_test.go
+go14/src/compress/zlib/writer.go
+go14/src/compress/zlib/writer_test.go
+go14/src/container/heap/example_intheap_test.go
+go14/src/container/heap/example_pq_test.go
+go14/src/container/heap/heap.go
+go14/src/container/heap/heap_test.go
+go14/src/container/list/example_test.go
+go14/src/container/list/list.go
+go14/src/container/list/list_test.go
+go14/src/container/ring/ring.go
+go14/src/container/ring/ring_test.go
+go14/src/crypto/aes/aes_test.go
+go14/src/crypto/aes/asm_amd64.s
+go14/src/crypto/aes/block.go
+go14/src/crypto/aes/cipher.go
+go14/src/crypto/aes/cipher_asm.go
+go14/src/crypto/aes/cipher_generic.go
+go14/src/crypto/aes/const.go
+go14/src/crypto/cipher/benchmark_test.go
+go14/src/crypto/cipher/cbc.go
+go14/src/crypto/cipher/cbc_aes_test.go
+go14/src/crypto/cipher/cfb.go
+go14/src/crypto/cipher/cfb_test.go
+go14/src/crypto/cipher/cipher.go
+go14/src/crypto/cipher/cipher_test.go
+go14/src/crypto/cipher/common_test.go
+go14/src/crypto/cipher/ctr.go
+go14/src/crypto/cipher/ctr_aes_test.go
+go14/src/crypto/cipher/example_test.go
+go14/src/crypto/cipher/gcm.go
+go14/src/crypto/cipher/gcm_test.go
+go14/src/crypto/cipher/io.go
+go14/src/crypto/cipher/ofb.go
+go14/src/crypto/cipher/ofb_test.go
+go14/src/crypto/cipher/xor.go
+go14/src/crypto/cipher/xor_test.go
+go14/src/crypto/crypto.go
+go14/src/crypto/des/block.go
+go14/src/crypto/des/cipher.go
+go14/src/crypto/des/const.go
+go14/src/crypto/des/des_test.go
+go14/src/crypto/des/example_test.go
+go14/src/crypto/dsa/dsa.go
+go14/src/crypto/dsa/dsa_test.go
+go14/src/crypto/ecdsa/ecdsa.go
+go14/src/crypto/ecdsa/ecdsa_test.go
+go14/src/crypto/ecdsa/testdata/SigVer.rsp.bz2
+go14/src/crypto/elliptic/elliptic.go
+go14/src/crypto/elliptic/elliptic_test.go
+go14/src/crypto/elliptic/p224.go
+go14/src/crypto/elliptic/p224_test.go
+go14/src/crypto/elliptic/p256.go
+go14/src/crypto/hmac/hmac.go
+go14/src/crypto/hmac/hmac_test.go
+go14/src/crypto/md5/example_test.go
+go14/src/crypto/md5/gen.go
+go14/src/crypto/md5/md5.go
+go14/src/crypto/md5/md5_test.go
+go14/src/crypto/md5/md5block.go
+go14/src/crypto/md5/md5block_386.s
+go14/src/crypto/md5/md5block_amd64.s
+go14/src/crypto/md5/md5block_amd64p32.s
+go14/src/crypto/md5/md5block_arm.s
+go14/src/crypto/md5/md5block_decl.go
+go14/src/crypto/md5/md5block_generic.go
+go14/src/crypto/rand/example_test.go
+go14/src/crypto/rand/rand.go
+go14/src/crypto/rand/rand_linux.go
+go14/src/crypto/rand/rand_test.go
+go14/src/crypto/rand/rand_unix.go
+go14/src/crypto/rand/rand_windows.go
+go14/src/crypto/rand/util.go
+go14/src/crypto/rand/util_test.go
+go14/src/crypto/rc4/rc4.go
+go14/src/crypto/rc4/rc4_386.s
+go14/src/crypto/rc4/rc4_amd64.s
+go14/src/crypto/rc4/rc4_amd64p32.s
+go14/src/crypto/rc4/rc4_arm.s
+go14/src/crypto/rc4/rc4_asm.go
+go14/src/crypto/rc4/rc4_ref.go
+go14/src/crypto/rc4/rc4_test.go
+go14/src/crypto/rsa/pkcs1v15.go
+go14/src/crypto/rsa/pkcs1v15_test.go
+go14/src/crypto/rsa/pss.go
+go14/src/crypto/rsa/pss_test.go
+go14/src/crypto/rsa/rsa.go
+go14/src/crypto/rsa/rsa_test.go
+go14/src/crypto/rsa/testdata/pss-vect.txt.bz2
+go14/src/crypto/sha1/example_test.go
+go14/src/crypto/sha1/sha1.go
+go14/src/crypto/sha1/sha1_test.go
+go14/src/crypto/sha1/sha1block.go
+go14/src/crypto/sha1/sha1block_386.s
+go14/src/crypto/sha1/sha1block_amd64.s
+go14/src/crypto/sha1/sha1block_amd64p32.s
+go14/src/crypto/sha1/sha1block_arm.s
+go14/src/crypto/sha1/sha1block_decl.go
+go14/src/crypto/sha1/sha1block_generic.go
+go14/src/crypto/sha256/sha256.go
+go14/src/crypto/sha256/sha256_test.go
+go14/src/crypto/sha256/sha256block.go
+go14/src/crypto/sha256/sha256block_386.s
+go14/src/crypto/sha256/sha256block_amd64.s
+go14/src/crypto/sha256/sha256block_decl.go
+go14/src/crypto/sha512/sha512.go
+go14/src/crypto/sha512/sha512_test.go
+go14/src/crypto/sha512/sha512block.go
+go14/src/crypto/sha512/sha512block_amd64.s
+go14/src/crypto/sha512/sha512block_decl.go
+go14/src/crypto/subtle/constant_time.go
+go14/src/crypto/subtle/constant_time_test.go
+go14/src/crypto/tls/alert.go
+go14/src/crypto/tls/cipher_suites.go
+go14/src/crypto/tls/common.go
+go14/src/crypto/tls/conn.go
+go14/src/crypto/tls/conn_test.go
+go14/src/crypto/tls/example_test.go
+go14/src/crypto/tls/generate_cert.go
+go14/src/crypto/tls/handshake_client.go
+go14/src/crypto/tls/handshake_client_test.go
+go14/src/crypto/tls/handshake_messages.go
+go14/src/crypto/tls/handshake_messages_test.go
+go14/src/crypto/tls/handshake_server.go
+go14/src/crypto/tls/handshake_server_test.go
+go14/src/crypto/tls/handshake_test.go
+go14/src/crypto/tls/key_agreement.go
+go14/src/crypto/tls/prf.go
+go14/src/crypto/tls/prf_test.go
+go14/src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-ECDSA
+go14/src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-RSA
+go14/src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA
+go14/src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-RSA
+go14/src/crypto/tls/testdata/Client-TLSv10-ECDHE-ECDSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv10-ECDHE-RSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv10-RSA-RC4
+go14/src/crypto/tls/testdata/Client-TLSv11-ECDHE-ECDSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv11-ECDHE-RSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv11-RSA-RC4
+go14/src/crypto/tls/testdata/Client-TLSv12-ALPN
+go14/src/crypto/tls/testdata/Client-TLSv12-ALPN-NoMatch
+go14/src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-ECDSA
+go14/src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA
+go14/src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-ECDSA
+go14/src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSA
+go14/src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES-GCM
+go14/src/crypto/tls/testdata/Client-TLSv12-ECDHE-RSA-AES
+go14/src/crypto/tls/testdata/Client-TLSv12-RSA-RC4
+go14/src/crypto/tls/testdata/Server-SSLv3-RSA-3DES
+go14/src/crypto/tls/testdata/Server-SSLv3-RSA-AES
+go14/src/crypto/tls/testdata/Server-SSLv3-RSA-RC4
+go14/src/crypto/tls/testdata/Server-TLSv10-ECDHE-ECDSA-AES
+go14/src/crypto/tls/testdata/Server-TLSv10-RSA-3DES
+go14/src/crypto/tls/testdata/Server-TLSv10-RSA-AES
+go14/src/crypto/tls/testdata/Server-TLSv10-RSA-RC4
+go14/src/crypto/tls/testdata/Server-TLSv11-FallbackSCSV
+go14/src/crypto/tls/testdata/Server-TLSv11-RSA-RC4
+go14/src/crypto/tls/testdata/Server-TLSv12-ALPN
+go14/src/crypto/tls/testdata/Server-TLSv12-ALPN-NoMatch
+go14/src/crypto/tls/testdata/Server-TLSv12-CipherSuiteCertPreferenceECDSA
+go14/src/crypto/tls/testdata/Server-TLSv12-CipherSuiteCertPreferenceRSA
+go14/src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndECDSAGiven
+go14/src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedAndGiven
+go14/src/crypto/tls/testdata/Server-TLSv12-ClientAuthRequestedNotGiven
+go14/src/crypto/tls/testdata/Server-TLSv12-ECDHE-ECDSA-AES
+go14/src/crypto/tls/testdata/Server-TLSv12-IssueTicket
+go14/src/crypto/tls/testdata/Server-TLSv12-IssueTicketPreDisable
+go14/src/crypto/tls/testdata/Server-TLSv12-RSA-3DES
+go14/src/crypto/tls/testdata/Server-TLSv12-RSA-AES
+go14/src/crypto/tls/testdata/Server-TLSv12-RSA-AES-GCM
+go14/src/crypto/tls/testdata/Server-TLSv12-RSA-RC4
+go14/src/crypto/tls/testdata/Server-TLSv12-Resume
+go14/src/crypto/tls/testdata/Server-TLSv12-ResumeDisabled
+go14/src/crypto/tls/testdata/Server-TLSv12-SNI
+go14/src/crypto/tls/ticket.go
+go14/src/crypto/tls/tls.go
+go14/src/crypto/tls/tls_test.go
+go14/src/crypto/x509/cert_pool.go
+go14/src/crypto/x509/example_test.go
+go14/src/crypto/x509/pem_decrypt.go
+go14/src/crypto/x509/pem_decrypt_test.go
+go14/src/crypto/x509/pkcs1.go
+go14/src/crypto/x509/pkcs8.go
+go14/src/crypto/x509/pkcs8_test.go
+go14/src/crypto/x509/pkix/pkix.go
+go14/src/crypto/x509/root.go
+go14/src/crypto/x509/root_cgo_darwin.go
+go14/src/crypto/x509/root_darwin.go
+go14/src/crypto/x509/root_darwin_test.go
+go14/src/crypto/x509/root_nocgo_darwin.go
+go14/src/crypto/x509/root_plan9.go
+go14/src/crypto/x509/root_unix.go
+go14/src/crypto/x509/root_windows.go
+go14/src/crypto/x509/sec1.go
+go14/src/crypto/x509/sec1_test.go
+go14/src/crypto/x509/verify.go
+go14/src/crypto/x509/verify_test.go
+go14/src/crypto/x509/x509.go
+go14/src/crypto/x509/x509_test.go
+go14/src/crypto/x509/x509_test_import.go
+go14/src/database/sql/convert.go
+go14/src/database/sql/convert_test.go
+go14/src/database/sql/doc.txt
+go14/src/database/sql/driver/driver.go
+go14/src/database/sql/driver/types.go
+go14/src/database/sql/driver/types_test.go
+go14/src/database/sql/example_test.go
+go14/src/database/sql/fakedb_test.go
+go14/src/database/sql/sql.go
+go14/src/database/sql/sql_test.go
+go14/src/debug/dwarf/buf.go
+go14/src/debug/dwarf/const.go
+go14/src/debug/dwarf/entry.go
+go14/src/debug/dwarf/open.go
+go14/src/debug/dwarf/testdata/typedef.c
+go14/src/debug/dwarf/testdata/typedef.elf
+go14/src/debug/dwarf/testdata/typedef.elf4
+go14/src/debug/dwarf/testdata/typedef.macho
+go14/src/debug/dwarf/type.go
+go14/src/debug/dwarf/type_test.go
+go14/src/debug/dwarf/typeunit.go
+go14/src/debug/dwarf/unit.go
+go14/src/debug/elf/elf.go
+go14/src/debug/elf/elf_test.go
+go14/src/debug/elf/file.go
+go14/src/debug/elf/file_test.go
+go14/src/debug/elf/symbols_test.go
+go14/src/debug/elf/testdata/gcc-386-freebsd-exec
+go14/src/debug/elf/testdata/gcc-amd64-linux-exec
+go14/src/debug/elf/testdata/gcc-amd64-openbsd-debug-with-rela.obj
+go14/src/debug/elf/testdata/go-relocation-test-clang-x86.obj
+go14/src/debug/elf/testdata/go-relocation-test-gcc424-x86-64.obj
+go14/src/debug/elf/testdata/go-relocation-test-gcc441-x86-64.obj
+go14/src/debug/elf/testdata/go-relocation-test-gcc441-x86.obj
+go14/src/debug/elf/testdata/go-relocation-test-gcc482-aarch64.obj
+go14/src/debug/elf/testdata/hello-world-core.gz
+go14/src/debug/elf/testdata/hello.c
+go14/src/debug/gosym/pclinetest.asm
+go14/src/debug/gosym/pclinetest.h
+go14/src/debug/gosym/pclntab.go
+go14/src/debug/gosym/pclntab_test.go
+go14/src/debug/gosym/symtab.go
+go14/src/debug/macho/fat.go
+go14/src/debug/macho/file.go
+go14/src/debug/macho/file_test.go
+go14/src/debug/macho/macho.go
+go14/src/debug/macho/testdata/fat-gcc-386-amd64-darwin-exec
+go14/src/debug/macho/testdata/gcc-386-darwin-exec
+go14/src/debug/macho/testdata/gcc-amd64-darwin-exec
+go14/src/debug/macho/testdata/gcc-amd64-darwin-exec-debug
+go14/src/debug/macho/testdata/hello.c
+go14/src/debug/pe/file.go
+go14/src/debug/pe/file_test.go
+go14/src/debug/pe/pe.go
+go14/src/debug/pe/testdata/gcc-386-mingw-exec
+go14/src/debug/pe/testdata/gcc-386-mingw-obj
+go14/src/debug/pe/testdata/gcc-amd64-mingw-exec
+go14/src/debug/pe/testdata/gcc-amd64-mingw-obj
+go14/src/debug/pe/testdata/hello.c
+go14/src/debug/plan9obj/file.go
+go14/src/debug/plan9obj/file_test.go
+go14/src/debug/plan9obj/plan9obj.go
+go14/src/debug/plan9obj/testdata/386-plan9-exec
+go14/src/debug/plan9obj/testdata/amd64-plan9-exec
+go14/src/debug/plan9obj/testdata/hello.c
+go14/src/encoding/ascii85/ascii85.go
+go14/src/encoding/ascii85/ascii85_test.go
+go14/src/encoding/asn1/asn1.go
+go14/src/encoding/asn1/asn1_test.go
+go14/src/encoding/asn1/common.go
+go14/src/encoding/asn1/marshal.go
+go14/src/encoding/asn1/marshal_test.go
+go14/src/encoding/base32/base32.go
+go14/src/encoding/base32/base32_test.go
+go14/src/encoding/base32/example_test.go
+go14/src/encoding/base64/base64.go
+go14/src/encoding/base64/base64_test.go
+go14/src/encoding/base64/example_test.go
+go14/src/encoding/binary/binary.go
+go14/src/encoding/binary/binary_test.go
+go14/src/encoding/binary/example_test.go
+go14/src/encoding/binary/varint.go
+go14/src/encoding/binary/varint_test.go
+go14/src/encoding/csv/reader.go
+go14/src/encoding/csv/reader_test.go
+go14/src/encoding/csv/writer.go
+go14/src/encoding/csv/writer_test.go
+go14/src/encoding/encoding.go
+go14/src/encoding/gob/codec_test.go
+go14/src/encoding/gob/debug.go
+go14/src/encoding/gob/dec_helpers.go
+go14/src/encoding/gob/decgen.go
+go14/src/encoding/gob/decode.go
+go14/src/encoding/gob/decoder.go
+go14/src/encoding/gob/doc.go
+go14/src/encoding/gob/dump.go
+go14/src/encoding/gob/enc_helpers.go
+go14/src/encoding/gob/encgen.go
+go14/src/encoding/gob/encode.go
+go14/src/encoding/gob/encoder.go
+go14/src/encoding/gob/encoder_test.go
+go14/src/encoding/gob/error.go
+go14/src/encoding/gob/example_encdec_test.go
+go14/src/encoding/gob/example_interface_test.go
+go14/src/encoding/gob/example_test.go
+go14/src/encoding/gob/gobencdec_test.go
+go14/src/encoding/gob/timing_test.go
+go14/src/encoding/gob/type.go
+go14/src/encoding/gob/type_test.go
+go14/src/encoding/hex/hex.go
+go14/src/encoding/hex/hex_test.go
+go14/src/encoding/json/bench_test.go
+go14/src/encoding/json/decode.go
+go14/src/encoding/json/decode_test.go
+go14/src/encoding/json/encode.go
+go14/src/encoding/json/encode_test.go
+go14/src/encoding/json/example_test.go
+go14/src/encoding/json/fold.go
+go14/src/encoding/json/fold_test.go
+go14/src/encoding/json/indent.go
+go14/src/encoding/json/scanner.go
+go14/src/encoding/json/scanner_test.go
+go14/src/encoding/json/stream.go
+go14/src/encoding/json/stream_test.go
+go14/src/encoding/json/tagkey_test.go
+go14/src/encoding/json/tags.go
+go14/src/encoding/json/tags_test.go
+go14/src/encoding/json/testdata/code.json.gz
+go14/src/encoding/pem/pem.go
+go14/src/encoding/pem/pem_test.go
+go14/src/encoding/xml/atom_test.go
+go14/src/encoding/xml/example_test.go
+go14/src/encoding/xml/marshal.go
+go14/src/encoding/xml/marshal_test.go
+go14/src/encoding/xml/read.go
+go14/src/encoding/xml/read_test.go
+go14/src/encoding/xml/typeinfo.go
+go14/src/encoding/xml/xml.go
+go14/src/encoding/xml/xml_test.go
+go14/src/errors/errors.go
+go14/src/errors/errors_test.go
+go14/src/errors/example_test.go
+go14/src/expvar/expvar.go
+go14/src/expvar/expvar_test.go
+go14/src/flag/example_test.go
+go14/src/flag/export_test.go
+go14/src/flag/flag.go
+go14/src/flag/flag_test.go
+go14/src/fmt/doc.go
+go14/src/fmt/export_test.go
+go14/src/fmt/fmt_test.go
+go14/src/fmt/format.go
+go14/src/fmt/print.go
+go14/src/fmt/scan.go
+go14/src/fmt/scan_test.go
+go14/src/fmt/stringer_test.go
+go14/src/go/ast/ast.go
+go14/src/go/ast/ast_test.go
+go14/src/go/ast/commentmap.go
+go14/src/go/ast/commentmap_test.go
+go14/src/go/ast/example_test.go
+go14/src/go/ast/filter.go
+go14/src/go/ast/filter_test.go
+go14/src/go/ast/import.go
+go14/src/go/ast/print.go
+go14/src/go/ast/print_test.go
+go14/src/go/ast/resolve.go
+go14/src/go/ast/scope.go
+go14/src/go/ast/walk.go
+go14/src/go/build/build.go
+go14/src/go/build/build_test.go
+go14/src/go/build/deps_test.go
+go14/src/go/build/doc.go
+go14/src/go/build/read.go
+go14/src/go/build/read_test.go
+go14/src/go/build/syslist.go
+go14/src/go/build/syslist_test.go
+go14/src/go/build/testdata/empty/dummy
+go14/src/go/build/testdata/multi/file.go
+go14/src/go/build/testdata/multi/file_appengine.go
+go14/src/go/build/testdata/other/file/file.go
+go14/src/go/build/testdata/other/main.go
+go14/src/go/doc/Makefile
+go14/src/go/doc/comment.go
+go14/src/go/doc/comment_test.go
+go14/src/go/doc/doc.go
+go14/src/go/doc/doc_test.go
+go14/src/go/doc/example.go
+go14/src/go/doc/example_test.go
+go14/src/go/doc/exports.go
+go14/src/go/doc/filter.go
+go14/src/go/doc/headscan.go
+go14/src/go/doc/reader.go
+go14/src/go/doc/synopsis.go
+go14/src/go/doc/synopsis_test.go
+go14/src/go/doc/testdata/a.0.golden
+go14/src/go/doc/testdata/a.1.golden
+go14/src/go/doc/testdata/a.2.golden
+go14/src/go/doc/testdata/a0.go
+go14/src/go/doc/testdata/a1.go
+go14/src/go/doc/testdata/b.0.golden
+go14/src/go/doc/testdata/b.1.golden
+go14/src/go/doc/testdata/b.2.golden
+go14/src/go/doc/testdata/b.go
+go14/src/go/doc/testdata/benchmark.go
+go14/src/go/doc/testdata/blank.0.golden
+go14/src/go/doc/testdata/blank.1.golden
+go14/src/go/doc/testdata/blank.2.golden
+go14/src/go/doc/testdata/blank.go
+go14/src/go/doc/testdata/bugpara.0.golden
+go14/src/go/doc/testdata/bugpara.1.golden
+go14/src/go/doc/testdata/bugpara.2.golden
+go14/src/go/doc/testdata/bugpara.go
+go14/src/go/doc/testdata/c.0.golden
+go14/src/go/doc/testdata/c.1.golden
+go14/src/go/doc/testdata/c.2.golden
+go14/src/go/doc/testdata/c.go
+go14/src/go/doc/testdata/d.0.golden
+go14/src/go/doc/testdata/d.1.golden
+go14/src/go/doc/testdata/d.2.golden
+go14/src/go/doc/testdata/d1.go
+go14/src/go/doc/testdata/d2.go
+go14/src/go/doc/testdata/e.0.golden
+go14/src/go/doc/testdata/e.1.golden
+go14/src/go/doc/testdata/e.2.golden
+go14/src/go/doc/testdata/e.go
+go14/src/go/doc/testdata/error1.0.golden
+go14/src/go/doc/testdata/error1.1.golden
+go14/src/go/doc/testdata/error1.2.golden
+go14/src/go/doc/testdata/error1.go
+go14/src/go/doc/testdata/error2.0.golden
+go14/src/go/doc/testdata/error2.1.golden
+go14/src/go/doc/testdata/error2.2.golden
+go14/src/go/doc/testdata/error2.go
+go14/src/go/doc/testdata/example.go
+go14/src/go/doc/testdata/f.0.golden
+go14/src/go/doc/testdata/f.1.golden
+go14/src/go/doc/testdata/f.2.golden
+go14/src/go/doc/testdata/f.go
+go14/src/go/doc/testdata/template.txt
+go14/src/go/doc/testdata/testing.0.golden
+go14/src/go/doc/testdata/testing.1.golden
+go14/src/go/doc/testdata/testing.2.golden
+go14/src/go/doc/testdata/testing.go
+go14/src/go/format/format.go
+go14/src/go/format/format_test.go
+go14/src/go/parser/error_test.go
+go14/src/go/parser/example_test.go
+go14/src/go/parser/interface.go
+go14/src/go/parser/parser.go
+go14/src/go/parser/parser_test.go
+go14/src/go/parser/performance_test.go
+go14/src/go/parser/short_test.go
+go14/src/go/parser/testdata/commas.src
+go14/src/go/parser/testdata/issue3106.src
+go14/src/go/printer/example_test.go
+go14/src/go/printer/nodes.go
+go14/src/go/printer/performance_test.go
+go14/src/go/printer/printer.go
+go14/src/go/printer/printer_test.go
+go14/src/go/printer/testdata/comments.golden
+go14/src/go/printer/testdata/comments.input
+go14/src/go/printer/testdata/comments.x
+go14/src/go/printer/testdata/comments2.golden
+go14/src/go/printer/testdata/comments2.input
+go14/src/go/printer/testdata/declarations.golden
+go14/src/go/printer/testdata/declarations.input
+go14/src/go/printer/testdata/empty.golden
+go14/src/go/printer/testdata/empty.input
+go14/src/go/printer/testdata/expressions.golden
+go14/src/go/printer/testdata/expressions.input
+go14/src/go/printer/testdata/expressions.raw
+go14/src/go/printer/testdata/linebreaks.golden
+go14/src/go/printer/testdata/linebreaks.input
+go14/src/go/printer/testdata/parser.go
+go14/src/go/printer/testdata/slow.golden
+go14/src/go/printer/testdata/slow.input
+go14/src/go/printer/testdata/statements.golden
+go14/src/go/printer/testdata/statements.input
+go14/src/go/scanner/errors.go
+go14/src/go/scanner/example_test.go
+go14/src/go/scanner/scanner.go
+go14/src/go/scanner/scanner_test.go
+go14/src/go/token/position.go
+go14/src/go/token/position_test.go
+go14/src/go/token/serialize.go
+go14/src/go/token/serialize_test.go
+go14/src/go/token/token.go
+go14/src/hash/adler32/adler32.go
+go14/src/hash/adler32/adler32_test.go
+go14/src/hash/crc32/crc32.go
+go14/src/hash/crc32/crc32_amd64.s
+go14/src/hash/crc32/crc32_amd64p32.s
+go14/src/hash/crc32/crc32_amd64x.go
+go14/src/hash/crc32/crc32_generic.go
+go14/src/hash/crc32/crc32_test.go
+go14/src/hash/crc64/crc64.go
+go14/src/hash/crc64/crc64_test.go
+go14/src/hash/fnv/fnv.go
+go14/src/hash/fnv/fnv_test.go
+go14/src/hash/hash.go
+go14/src/hash/test_cases.txt
+go14/src/hash/test_gen.awk
+go14/src/html/entity.go
+go14/src/html/entity_test.go
+go14/src/html/escape.go
+go14/src/html/escape_test.go
+go14/src/html/template/attr.go
+go14/src/html/template/clone_test.go
+go14/src/html/template/content.go
+go14/src/html/template/content_test.go
+go14/src/html/template/context.go
+go14/src/html/template/css.go
+go14/src/html/template/css_test.go
+go14/src/html/template/doc.go
+go14/src/html/template/error.go
+go14/src/html/template/escape.go
+go14/src/html/template/escape_test.go
+go14/src/html/template/html.go
+go14/src/html/template/html_test.go
+go14/src/html/template/js.go
+go14/src/html/template/js_test.go
+go14/src/html/template/template.go
+go14/src/html/template/transition.go
+go14/src/html/template/url.go
+go14/src/html/template/url_test.go
+go14/src/image/color/color.go
+go14/src/image/color/palette/gen.go
+go14/src/image/color/palette/generate.go
+go14/src/image/color/palette/palette.go
+go14/src/image/color/ycbcr.go
+go14/src/image/color/ycbcr_test.go
+go14/src/image/decode_example_test.go
+go14/src/image/decode_test.go
+go14/src/image/draw/bench_test.go
+go14/src/image/draw/clip_test.go
+go14/src/image/draw/draw.go
+go14/src/image/draw/draw_test.go
+go14/src/image/format.go
+go14/src/image/geom.go
+go14/src/image/gif/reader.go
+go14/src/image/gif/reader_test.go
+go14/src/image/gif/writer.go
+go14/src/image/gif/writer_test.go
+go14/src/image/image.go
+go14/src/image/image_test.go
+go14/src/image/jpeg/dct_test.go
+go14/src/image/jpeg/fdct.go
+go14/src/image/jpeg/huffman.go
+go14/src/image/jpeg/idct.go
+go14/src/image/jpeg/reader.go
+go14/src/image/jpeg/reader_test.go
+go14/src/image/jpeg/scan.go
+go14/src/image/jpeg/writer.go
+go14/src/image/jpeg/writer_test.go
+go14/src/image/names.go
+go14/src/image/png/paeth.go
+go14/src/image/png/paeth_test.go
+go14/src/image/png/reader.go
+go14/src/image/png/reader_test.go
+go14/src/image/png/testdata/benchGray.png
+go14/src/image/png/testdata/benchNRGBA-gradient.png
+go14/src/image/png/testdata/benchNRGBA-opaque.png
+go14/src/image/png/testdata/benchPaletted.png
+go14/src/image/png/testdata/benchRGB-interlace.png
+go14/src/image/png/testdata/benchRGB.png
+go14/src/image/png/testdata/invalid-crc32.png
+go14/src/image/png/testdata/invalid-noend.png
+go14/src/image/png/testdata/invalid-trunc.png
+go14/src/image/png/testdata/invalid-zlib.png
+go14/src/image/png/testdata/pngsuite/README
+go14/src/image/png/testdata/pngsuite/README.original
+go14/src/image/png/testdata/pngsuite/basn0g01-30.png
+go14/src/image/png/testdata/pngsuite/basn0g01-30.sng
+go14/src/image/png/testdata/pngsuite/basn0g01.png
+go14/src/image/png/testdata/pngsuite/basn0g01.sng
+go14/src/image/png/testdata/pngsuite/basn0g02-29.png
+go14/src/image/png/testdata/pngsuite/basn0g02-29.sng
+go14/src/image/png/testdata/pngsuite/basn0g02.png
+go14/src/image/png/testdata/pngsuite/basn0g02.sng
+go14/src/image/png/testdata/pngsuite/basn0g04-31.png
+go14/src/image/png/testdata/pngsuite/basn0g04-31.sng
+go14/src/image/png/testdata/pngsuite/basn0g04.png
+go14/src/image/png/testdata/pngsuite/basn0g04.sng
+go14/src/image/png/testdata/pngsuite/basn0g08.png
+go14/src/image/png/testdata/pngsuite/basn0g08.sng
+go14/src/image/png/testdata/pngsuite/basn0g16.png
+go14/src/image/png/testdata/pngsuite/basn0g16.sng
+go14/src/image/png/testdata/pngsuite/basn2c08.png
+go14/src/image/png/testdata/pngsuite/basn2c08.sng
+go14/src/image/png/testdata/pngsuite/basn2c16.png
+go14/src/image/png/testdata/pngsuite/basn2c16.sng
+go14/src/image/png/testdata/pngsuite/basn3p01.png
+go14/src/image/png/testdata/pngsuite/basn3p01.sng
+go14/src/image/png/testdata/pngsuite/basn3p02.png
+go14/src/image/png/testdata/pngsuite/basn3p02.sng
+go14/src/image/png/testdata/pngsuite/basn3p04-31i.png
+go14/src/image/png/testdata/pngsuite/basn3p04-31i.sng
+go14/src/image/png/testdata/pngsuite/basn3p04.png
+go14/src/image/png/testdata/pngsuite/basn3p04.sng
+go14/src/image/png/testdata/pngsuite/basn3p08-trns.png
+go14/src/image/png/testdata/pngsuite/basn3p08-trns.sng
+go14/src/image/png/testdata/pngsuite/basn3p08.png
+go14/src/image/png/testdata/pngsuite/basn3p08.sng
+go14/src/image/png/testdata/pngsuite/basn4a08.png
+go14/src/image/png/testdata/pngsuite/basn4a08.sng
+go14/src/image/png/testdata/pngsuite/basn4a16.png
+go14/src/image/png/testdata/pngsuite/basn4a16.sng
+go14/src/image/png/testdata/pngsuite/basn6a08.png
+go14/src/image/png/testdata/pngsuite/basn6a08.sng
+go14/src/image/png/testdata/pngsuite/basn6a16.png
+go14/src/image/png/testdata/pngsuite/basn6a16.sng
+go14/src/image/png/writer.go
+go14/src/image/png/writer_test.go
+go14/src/image/testdata/video-001.5bpp.gif
+go14/src/image/testdata/video-001.gif
+go14/src/image/testdata/video-001.interlaced.gif
+go14/src/image/testdata/video-001.jpeg
+go14/src/image/testdata/video-001.png
+go14/src/image/testdata/video-001.progressive.jpeg
+go14/src/image/testdata/video-001.q50.420.jpeg
+go14/src/image/testdata/video-001.q50.420.progressive.jpeg
+go14/src/image/testdata/video-001.q50.422.jpeg
+go14/src/image/testdata/video-001.q50.422.progressive.jpeg
+go14/src/image/testdata/video-001.q50.440.jpeg
+go14/src/image/testdata/video-001.q50.440.progressive.jpeg
+go14/src/image/testdata/video-001.q50.444.jpeg
+go14/src/image/testdata/video-001.q50.444.progressive.jpeg
+go14/src/image/testdata/video-001.separate.dc.progression.jpeg
+go14/src/image/testdata/video-001.separate.dc.progression.progressive.jpeg
+go14/src/image/testdata/video-005.gray.gif
+go14/src/image/testdata/video-005.gray.jpeg
+go14/src/image/testdata/video-005.gray.png
+go14/src/image/testdata/video-005.gray.q50.2x2.jpeg
+go14/src/image/testdata/video-005.gray.q50.2x2.progressive.jpeg
+go14/src/image/testdata/video-005.gray.q50.jpeg
+go14/src/image/testdata/video-005.gray.q50.progressive.jpeg
+go14/src/image/ycbcr.go
+go14/src/image/ycbcr_test.go
+go14/src/index/suffixarray/qsufsort.go
+go14/src/index/suffixarray/suffixarray.go
+go14/src/index/suffixarray/suffixarray_test.go
+go14/src/internal/syscall/getrandom_linux.go
+go14/src/io/io.go
+go14/src/io/io_test.go
+go14/src/io/ioutil/ioutil.go
+go14/src/io/ioutil/ioutil_test.go
+go14/src/io/ioutil/tempfile.go
+go14/src/io/ioutil/tempfile_test.go
+go14/src/io/multi.go
+go14/src/io/multi_test.go
+go14/src/io/pipe.go
+go14/src/io/pipe_test.go
+go14/src/lib9/Makefile
+go14/src/lib9/_exits.c
+go14/src/lib9/_p9dir.c
+go14/src/lib9/atoi.c
+go14/src/lib9/await.c
+go14/src/lib9/cleanname.c
+go14/src/lib9/create.c
+go14/src/lib9/ctime.c
+go14/src/lib9/dirfstat.c
+go14/src/lib9/dirfwstat.c
+go14/src/lib9/dirstat.c
+go14/src/lib9/dirwstat.c
+go14/src/lib9/dup.c
+go14/src/lib9/errstr.c
+go14/src/lib9/exec.c
+go14/src/lib9/execl.c
+go14/src/lib9/exitcode.c
+go14/src/lib9/exits.c
+go14/src/lib9/flag.c
+go14/src/lib9/fmt/charstod.c
+go14/src/lib9/fmt/dofmt.c
+go14/src/lib9/fmt/dorfmt.c
+go14/src/lib9/fmt/errfmt.c
+go14/src/lib9/fmt/fltfmt.c
+go14/src/lib9/fmt/fmt.c
+go14/src/lib9/fmt/fmtdef.h
+go14/src/lib9/fmt/fmtfd.c
+go14/src/lib9/fmt/fmtfdflush.c
+go14/src/lib9/fmt/fmtlocale.c
+go14/src/lib9/fmt/fmtlock.c
+go14/src/lib9/fmt/fmtnull.c
+go14/src/lib9/fmt/fmtprint.c
+go14/src/lib9/fmt/fmtquote.c
+go14/src/lib9/fmt/fmtrune.c
+go14/src/lib9/fmt/fmtstr.c
+go14/src/lib9/fmt/fmtvprint.c
+go14/src/lib9/fmt/fprint.c
+go14/src/lib9/fmt/nan64.c
+go14/src/lib9/fmt/pow10.c
+go14/src/lib9/fmt/print.c
+go14/src/lib9/fmt/seprint.c
+go14/src/lib9/fmt/smprint.c
+go14/src/lib9/fmt/snprint.c
+go14/src/lib9/fmt/sprint.c
+go14/src/lib9/fmt/strtod.c
+go14/src/lib9/fmt/test.c
+go14/src/lib9/fmt/vfprint.c
+go14/src/lib9/fmt/vseprint.c
+go14/src/lib9/fmt/vsmprint.c
+go14/src/lib9/fmt/vsnprint.c
+go14/src/lib9/fmtlock2.c
+go14/src/lib9/getenv.c
+go14/src/lib9/getfields.c
+go14/src/lib9/getwd.c
+go14/src/lib9/goos.c
+go14/src/lib9/jmp.c
+go14/src/lib9/main.c
+go14/src/lib9/nan.c
+go14/src/lib9/notify.c
+go14/src/lib9/nulldir.c
+go14/src/lib9/open.c
+go14/src/lib9/readn.c
+go14/src/lib9/rfork.c
+go14/src/lib9/run_plan9.c
+go14/src/lib9/run_unix.c
+go14/src/lib9/run_windows.c
+go14/src/lib9/seek.c
+go14/src/lib9/strecpy.c
+go14/src/lib9/sysfatal.c
+go14/src/lib9/tempdir_plan9.c
+go14/src/lib9/tempdir_unix.c
+go14/src/lib9/tempdir_windows.c
+go14/src/lib9/time.c
+go14/src/lib9/tokenize.c
+go14/src/lib9/utf/Makefile
+go14/src/lib9/utf/mkrunetype.c
+go14/src/lib9/utf/rune.c
+go14/src/lib9/utf/runetype.c
+go14/src/lib9/utf/runetypebody-6.3.0.h
+go14/src/lib9/utf/utf.h
+go14/src/lib9/utf/utfdef.h
+go14/src/lib9/utf/utfecpy.c
+go14/src/lib9/utf/utflen.c
+go14/src/lib9/utf/utfnlen.c
+go14/src/lib9/utf/utfrrune.c
+go14/src/lib9/utf/utfrune.c
+go14/src/lib9/utf/utfutf.c
+go14/src/lib9/win.h
+go14/src/lib9/windows.c
+go14/src/libbio/Makefile
+go14/src/libbio/bbuffered.c
+go14/src/libbio/bfildes.c
+go14/src/libbio/bflush.c
+go14/src/libbio/bgetc.c
+go14/src/libbio/bgetd.c
+go14/src/libbio/bgetrune.c
+go14/src/libbio/binit.c
+go14/src/libbio/boffset.c
+go14/src/libbio/bprint.c
+go14/src/libbio/bputc.c
+go14/src/libbio/bputrune.c
+go14/src/libbio/brdline.c
+go14/src/libbio/brdstr.c
+go14/src/libbio/bread.c
+go14/src/libbio/bseek.c
+go14/src/libbio/bwrite.c
+go14/src/liblink/Makefile
+go14/src/liblink/anames5.c
+go14/src/liblink/anames6.c
+go14/src/liblink/anames8.c
+go14/src/liblink/asm5.c
+go14/src/liblink/asm6.c
+go14/src/liblink/asm8.c
+go14/src/liblink/data.c
+go14/src/liblink/go.c
+go14/src/liblink/ld.c
+go14/src/liblink/list5.c
+go14/src/liblink/list6.c
+go14/src/liblink/list8.c
+go14/src/liblink/obj.c
+go14/src/liblink/obj5.c
+go14/src/liblink/obj6.c
+go14/src/liblink/obj8.c
+go14/src/liblink/objfile.c
+go14/src/liblink/pass.c
+go14/src/liblink/pcln.c
+go14/src/liblink/sym.c
+go14/src/log/example_test.go
+go14/src/log/log.go
+go14/src/log/log_test.go
+go14/src/log/syslog/syslog.go
+go14/src/log/syslog/syslog_plan9.go
+go14/src/log/syslog/syslog_test.go
+go14/src/log/syslog/syslog_unix.go
+go14/src/log/syslog/syslog_windows.go
+go14/src/make.bash
+go14/src/make.bat
+go14/src/make.rc
+go14/src/math/abs.go
+go14/src/math/abs_386.s
+go14/src/math/abs_amd64.s
+go14/src/math/abs_amd64p32.s
+go14/src/math/abs_arm.s
+go14/src/math/acosh.go
+go14/src/math/all_test.go
+go14/src/math/asin.go
+go14/src/math/asin_386.s
+go14/src/math/asin_amd64.s
+go14/src/math/asin_amd64p32.s
+go14/src/math/asin_arm.s
+go14/src/math/asinh.go
+go14/src/math/atan.go
+go14/src/math/atan2.go
+go14/src/math/atan2_386.s
+go14/src/math/atan2_amd64.s
+go14/src/math/atan2_amd64p32.s
+go14/src/math/atan2_arm.s
+go14/src/math/atan_386.s
+go14/src/math/atan_amd64.s
+go14/src/math/atan_amd64p32.s
+go14/src/math/atan_arm.s
+go14/src/math/atanh.go
+go14/src/math/big/arith.go
+go14/src/math/big/arith_386.s
+go14/src/math/big/arith_amd64.s
+go14/src/math/big/arith_amd64p32.s
+go14/src/math/big/arith_arm.s
+go14/src/math/big/arith_decl.go
+go14/src/math/big/arith_test.go
+go14/src/math/big/calibrate_test.go
+go14/src/math/big/example_test.go
+go14/src/math/big/gcd_test.go
+go14/src/math/big/hilbert_test.go
+go14/src/math/big/int.go
+go14/src/math/big/int_test.go
+go14/src/math/big/nat.go
+go14/src/math/big/nat_test.go
+go14/src/math/big/rat.go
+go14/src/math/big/rat_test.go
+go14/src/math/bits.go
+go14/src/math/cbrt.go
+go14/src/math/cmplx/abs.go
+go14/src/math/cmplx/asin.go
+go14/src/math/cmplx/cmath_test.go
+go14/src/math/cmplx/conj.go
+go14/src/math/cmplx/exp.go
+go14/src/math/cmplx/isinf.go
+go14/src/math/cmplx/isnan.go
+go14/src/math/cmplx/log.go
+go14/src/math/cmplx/phase.go
+go14/src/math/cmplx/polar.go
+go14/src/math/cmplx/pow.go
+go14/src/math/cmplx/rect.go
+go14/src/math/cmplx/sin.go
+go14/src/math/cmplx/sqrt.go
+go14/src/math/cmplx/tan.go
+go14/src/math/const.go
+go14/src/math/copysign.go
+go14/src/math/dim.go
+go14/src/math/dim_386.s
+go14/src/math/dim_amd64.s
+go14/src/math/dim_amd64p32.s
+go14/src/math/dim_arm.s
+go14/src/math/erf.go
+go14/src/math/exp.go
+go14/src/math/exp2_386.s
+go14/src/math/exp2_amd64.s
+go14/src/math/exp2_amd64p32.s
+go14/src/math/exp2_arm.s
+go14/src/math/exp_386.s
+go14/src/math/exp_amd64.s
+go14/src/math/exp_amd64p32.s
+go14/src/math/exp_arm.s
+go14/src/math/expm1.go
+go14/src/math/expm1_386.s
+go14/src/math/expm1_amd64.s
+go14/src/math/expm1_amd64p32.s
+go14/src/math/expm1_arm.s
+go14/src/math/export_test.go
+go14/src/math/floor.go
+go14/src/math/floor_386.s
+go14/src/math/floor_amd64.s
+go14/src/math/floor_amd64p32.s
+go14/src/math/floor_arm.s
+go14/src/math/frexp.go
+go14/src/math/frexp_386.s
+go14/src/math/frexp_amd64.s
+go14/src/math/frexp_amd64p32.s
+go14/src/math/frexp_arm.s
+go14/src/math/gamma.go
+go14/src/math/hypot.go
+go14/src/math/hypot_386.s
+go14/src/math/hypot_amd64.s
+go14/src/math/hypot_amd64p32.s
+go14/src/math/hypot_arm.s
+go14/src/math/j0.go
+go14/src/math/j1.go
+go14/src/math/jn.go
+go14/src/math/ldexp.go
+go14/src/math/ldexp_386.s
+go14/src/math/ldexp_amd64.s
+go14/src/math/ldexp_amd64p32.s
+go14/src/math/ldexp_arm.s
+go14/src/math/lgamma.go
+go14/src/math/log.go
+go14/src/math/log10.go
+go14/src/math/log10_386.s
+go14/src/math/log10_amd64.s
+go14/src/math/log10_amd64p32.s
+go14/src/math/log10_arm.s
+go14/src/math/log1p.go
+go14/src/math/log1p_386.s
+go14/src/math/log1p_amd64.s
+go14/src/math/log1p_amd64p32.s
+go14/src/math/log1p_arm.s
+go14/src/math/log_386.s
+go14/src/math/log_amd64.s
+go14/src/math/log_amd64p32.s
+go14/src/math/log_arm.s
+go14/src/math/logb.go
+go14/src/math/mod.go
+go14/src/math/mod_386.s
+go14/src/math/mod_amd64.s
+go14/src/math/mod_amd64p32.s
+go14/src/math/mod_arm.s
+go14/src/math/modf.go
+go14/src/math/modf_386.s
+go14/src/math/modf_amd64.s
+go14/src/math/modf_amd64p32.s
+go14/src/math/modf_arm.s
+go14/src/math/nextafter.go
+go14/src/math/pow.go
+go14/src/math/pow10.go
+go14/src/math/rand/example_test.go
+go14/src/math/rand/exp.go
+go14/src/math/rand/normal.go
+go14/src/math/rand/rand.go
+go14/src/math/rand/rand_test.go
+go14/src/math/rand/regress_test.go
+go14/src/math/rand/rng.go
+go14/src/math/rand/zipf.go
+go14/src/math/remainder.go
+go14/src/math/remainder_386.s
+go14/src/math/remainder_amd64.s
+go14/src/math/remainder_amd64p32.s
+go14/src/math/remainder_arm.s
+go14/src/math/signbit.go
+go14/src/math/sin.go
+go14/src/math/sin_386.s
+go14/src/math/sin_amd64.s
+go14/src/math/sin_amd64p32.s
+go14/src/math/sin_arm.s
+go14/src/math/sincos.go
+go14/src/math/sincos_386.s
+go14/src/math/sincos_amd64.s
+go14/src/math/sincos_amd64p32.s
+go14/src/math/sincos_arm.s
+go14/src/math/sinh.go
+go14/src/math/sqrt.go
+go14/src/math/sqrt_386.s
+go14/src/math/sqrt_amd64.s
+go14/src/math/sqrt_amd64p32.s
+go14/src/math/sqrt_arm.s
+go14/src/math/tan.go
+go14/src/math/tan_386.s
+go14/src/math/tan_amd64.s
+go14/src/math/tan_amd64p32.s
+go14/src/math/tan_arm.s
+go14/src/math/tanh.go
+go14/src/math/unsafe.go
+go14/src/mime/grammar.go
+go14/src/mime/mediatype.go
+go14/src/mime/mediatype_test.go
+go14/src/mime/multipart/example_test.go
+go14/src/mime/multipart/formdata.go
+go14/src/mime/multipart/formdata_test.go
+go14/src/mime/multipart/multipart.go
+go14/src/mime/multipart/multipart_test.go
+go14/src/mime/multipart/quotedprintable.go
+go14/src/mime/multipart/quotedprintable_test.go
+go14/src/mime/multipart/testdata/nested-mime
+go14/src/mime/multipart/writer.go
+go14/src/mime/multipart/writer_test.go
+go14/src/mime/testdata/test.types
+go14/src/mime/testdata/test.types.plan9
+go14/src/mime/type.go
+go14/src/mime/type_plan9.go
+go14/src/mime/type_test.go
+go14/src/mime/type_unix.go
+go14/src/mime/type_windows.go
+go14/src/nacltest.bash
+go14/src/net/cgo_android.go
+go14/src/net/cgo_bsd.go
+go14/src/net/cgo_linux.go
+go14/src/net/cgo_netbsd.go
+go14/src/net/cgo_openbsd.go
+go14/src/net/cgo_stub.go
+go14/src/net/cgo_unix.go
+go14/src/net/cgo_unix_test.go
+go14/src/net/conn_test.go
+go14/src/net/dial.go
+go14/src/net/dial_gen.go
+go14/src/net/dial_gen_test.go
+go14/src/net/dial_test.go
+go14/src/net/dialgoogle_test.go
+go14/src/net/dnsclient.go
+go14/src/net/dnsclient_test.go
+go14/src/net/dnsclient_unix.go
+go14/src/net/dnsclient_unix_test.go
+go14/src/net/dnsconfig_unix.go
+go14/src/net/dnsconfig_unix_test.go
+go14/src/net/dnsmsg.go
+go14/src/net/dnsmsg_test.go
+go14/src/net/dnsname_test.go
+go14/src/net/example_test.go
+go14/src/net/fd_mutex.go
+go14/src/net/fd_mutex_test.go
+go14/src/net/fd_plan9.go
+go14/src/net/fd_poll_nacl.go
+go14/src/net/fd_poll_runtime.go
+go14/src/net/fd_unix.go
+go14/src/net/fd_unix_test.go
+go14/src/net/fd_windows.go
+go14/src/net/file_plan9.go
+go14/src/net/file_stub.go
+go14/src/net/file_test.go
+go14/src/net/file_unix.go
+go14/src/net/file_windows.go
+go14/src/net/hosts.go
+go14/src/net/hosts_test.go
+go14/src/net/http/cgi/child.go
+go14/src/net/http/cgi/child_test.go
+go14/src/net/http/cgi/host.go
+go14/src/net/http/cgi/host_test.go
+go14/src/net/http/cgi/matryoshka_test.go
+go14/src/net/http/cgi/plan9_test.go
+go14/src/net/http/cgi/posix_test.go
+go14/src/net/http/cgi/testdata/test.cgi
+go14/src/net/http/client.go
+go14/src/net/http/client_test.go
+go14/src/net/http/cookie.go
+go14/src/net/http/cookie_test.go
+go14/src/net/http/cookiejar/jar.go
+go14/src/net/http/cookiejar/jar_test.go
+go14/src/net/http/cookiejar/punycode.go
+go14/src/net/http/cookiejar/punycode_test.go
+go14/src/net/http/doc.go
+go14/src/net/http/example_test.go
+go14/src/net/http/export_test.go
+go14/src/net/http/fcgi/child.go
+go14/src/net/http/fcgi/fcgi.go
+go14/src/net/http/fcgi/fcgi_test.go
+go14/src/net/http/filetransport.go
+go14/src/net/http/filetransport_test.go
+go14/src/net/http/fs.go
+go14/src/net/http/fs_test.go
+go14/src/net/http/header.go
+go14/src/net/http/header_test.go
+go14/src/net/http/httptest/example_test.go
+go14/src/net/http/httptest/recorder.go
+go14/src/net/http/httptest/recorder_test.go
+go14/src/net/http/httptest/server.go
+go14/src/net/http/httptest/server_test.go
+go14/src/net/http/httputil/dump.go
+go14/src/net/http/httputil/dump_test.go
+go14/src/net/http/httputil/httputil.go
+go14/src/net/http/httputil/persist.go
+go14/src/net/http/httputil/reverseproxy.go
+go14/src/net/http/httputil/reverseproxy_test.go
+go14/src/net/http/internal/chunked.go
+go14/src/net/http/internal/chunked_test.go
+go14/src/net/http/jar.go
+go14/src/net/http/lex.go
+go14/src/net/http/lex_test.go
+go14/src/net/http/main_test.go
+go14/src/net/http/npn_test.go
+go14/src/net/http/pprof/pprof.go
+go14/src/net/http/proxy_test.go
+go14/src/net/http/race.go
+go14/src/net/http/range_test.go
+go14/src/net/http/readrequest_test.go
+go14/src/net/http/request.go
+go14/src/net/http/request_test.go
+go14/src/net/http/requestwrite_test.go
+go14/src/net/http/response.go
+go14/src/net/http/response_test.go
+go14/src/net/http/responsewrite_test.go
+go14/src/net/http/serve_test.go
+go14/src/net/http/server.go
+go14/src/net/http/sniff.go
+go14/src/net/http/sniff_test.go
+go14/src/net/http/status.go
+go14/src/net/http/testdata/file
+go14/src/net/http/testdata/index.html
+go14/src/net/http/testdata/style.css
+go14/src/net/http/transfer.go
+go14/src/net/http/transfer_test.go
+go14/src/net/http/transport.go
+go14/src/net/http/transport_test.go
+go14/src/net/http/triv.go
+go14/src/net/interface.go
+go14/src/net/interface_bsd.go
+go14/src/net/interface_bsd_test.go
+go14/src/net/interface_darwin.go
+go14/src/net/interface_dragonfly.go
+go14/src/net/interface_freebsd.go
+go14/src/net/interface_linux.go
+go14/src/net/interface_linux_test.go
+go14/src/net/interface_netbsd.go
+go14/src/net/interface_openbsd.go
+go14/src/net/interface_stub.go
+go14/src/net/interface_test.go
+go14/src/net/interface_unix_test.go
+go14/src/net/interface_windows.go
+go14/src/net/ip.go
+go14/src/net/ip_test.go
+go14/src/net/ipraw_test.go
+go14/src/net/iprawsock.go
+go14/src/net/iprawsock_plan9.go
+go14/src/net/iprawsock_posix.go
+go14/src/net/ipsock.go
+go14/src/net/ipsock_plan9.go
+go14/src/net/ipsock_posix.go
+go14/src/net/ipsock_test.go
+go14/src/net/lookup.go
+go14/src/net/lookup_plan9.go
+go14/src/net/lookup_stub.go
+go14/src/net/lookup_test.go
+go14/src/net/lookup_unix.go
+go14/src/net/lookup_windows.go
+go14/src/net/lookup_windows_test.go
+go14/src/net/mac.go
+go14/src/net/mac_test.go
+go14/src/net/mail/message.go
+go14/src/net/mail/message_test.go
+go14/src/net/mockicmp_test.go
+go14/src/net/mockserver_test.go
+go14/src/net/multicast_test.go
+go14/src/net/net.go
+go14/src/net/net_test.go
+go14/src/net/net_windows_test.go
+go14/src/net/netgo_unix_test.go
+go14/src/net/packetconn_test.go
+go14/src/net/parse.go
+go14/src/net/parse_test.go
+go14/src/net/pipe.go
+go14/src/net/pipe_test.go
+go14/src/net/port.go
+go14/src/net/port_test.go
+go14/src/net/port_unix.go
+go14/src/net/protoconn_test.go
+go14/src/net/race.go
+go14/src/net/race0.go
+go14/src/net/rpc/client.go
+go14/src/net/rpc/client_test.go
+go14/src/net/rpc/debug.go
+go14/src/net/rpc/jsonrpc/all_test.go
+go14/src/net/rpc/jsonrpc/client.go
+go14/src/net/rpc/jsonrpc/server.go
+go14/src/net/rpc/server.go
+go14/src/net/rpc/server_test.go
+go14/src/net/sendfile_dragonfly.go
+go14/src/net/sendfile_freebsd.go
+go14/src/net/sendfile_linux.go
+go14/src/net/sendfile_stub.go
+go14/src/net/sendfile_windows.go
+go14/src/net/server_test.go
+go14/src/net/singleflight.go
+go14/src/net/smtp/auth.go
+go14/src/net/smtp/example_test.go
+go14/src/net/smtp/smtp.go
+go14/src/net/smtp/smtp_test.go
+go14/src/net/sock_bsd.go
+go14/src/net/sock_cloexec.go
+go14/src/net/sock_linux.go
+go14/src/net/sock_plan9.go
+go14/src/net/sock_posix.go
+go14/src/net/sock_stub.go
+go14/src/net/sock_windows.go
+go14/src/net/sockopt_bsd.go
+go14/src/net/sockopt_linux.go
+go14/src/net/sockopt_plan9.go
+go14/src/net/sockopt_posix.go
+go14/src/net/sockopt_solaris.go
+go14/src/net/sockopt_stub.go
+go14/src/net/sockopt_windows.go
+go14/src/net/sockoptip_bsd.go
+go14/src/net/sockoptip_linux.go
+go14/src/net/sockoptip_posix.go
+go14/src/net/sockoptip_stub.go
+go14/src/net/sockoptip_windows.go
+go14/src/net/sys_cloexec.go
+go14/src/net/tcp_test.go
+go14/src/net/tcpsock.go
+go14/src/net/tcpsock_plan9.go
+go14/src/net/tcpsock_posix.go
+go14/src/net/tcpsockopt_darwin.go
+go14/src/net/tcpsockopt_dragonfly.go
+go14/src/net/tcpsockopt_openbsd.go
+go14/src/net/tcpsockopt_plan9.go
+go14/src/net/tcpsockopt_posix.go
+go14/src/net/tcpsockopt_stub.go
+go14/src/net/tcpsockopt_unix.go
+go14/src/net/tcpsockopt_windows.go
+go14/src/net/testdata/domain-resolv.conf
+go14/src/net/testdata/empty-resolv.conf
+go14/src/net/testdata/hosts
+go14/src/net/testdata/hosts_singleline
+go14/src/net/testdata/igmp
+go14/src/net/testdata/igmp6
+go14/src/net/testdata/resolv.conf
+go14/src/net/testdata/search-resolv.conf
+go14/src/net/textproto/header.go
+go14/src/net/textproto/pipeline.go
+go14/src/net/textproto/reader.go
+go14/src/net/textproto/reader_test.go
+go14/src/net/textproto/textproto.go
+go14/src/net/textproto/writer.go
+go14/src/net/textproto/writer_test.go
+go14/src/net/timeout_test.go
+go14/src/net/udp_test.go
+go14/src/net/udpsock.go
+go14/src/net/udpsock_plan9.go
+go14/src/net/udpsock_posix.go
+go14/src/net/unicast_posix_test.go
+go14/src/net/unix_test.go
+go14/src/net/unixsock.go
+go14/src/net/unixsock_plan9.go
+go14/src/net/unixsock_posix.go
+go14/src/net/url/example_test.go
+go14/src/net/url/url.go
+go14/src/net/url/url_test.go
+go14/src/net/z_last_test.go
+go14/src/os/dir_plan9.go
+go14/src/os/dir_unix.go
+go14/src/os/dir_windows.go
+go14/src/os/doc.go
+go14/src/os/env.go
+go14/src/os/env_test.go
+go14/src/os/env_unix_test.go
+go14/src/os/error.go
+go14/src/os/error_plan9.go
+go14/src/os/error_test.go
+go14/src/os/error_unix.go
+go14/src/os/error_windows.go
+go14/src/os/error_windows_test.go
+go14/src/os/exec.go
+go14/src/os/exec/example_test.go
+go14/src/os/exec/exec.go
+go14/src/os/exec/exec_test.go
+go14/src/os/exec/lp_plan9.go
+go14/src/os/exec/lp_test.go
+go14/src/os/exec/lp_unix.go
+go14/src/os/exec/lp_unix_test.go
+go14/src/os/exec/lp_windows.go
+go14/src/os/exec/lp_windows_test.go
+go14/src/os/exec_plan9.go
+go14/src/os/exec_posix.go
+go14/src/os/exec_unix.go
+go14/src/os/exec_windows.go
+go14/src/os/export_test.go
+go14/src/os/file.go
+go14/src/os/file_plan9.go
+go14/src/os/file_posix.go
+go14/src/os/file_unix.go
+go14/src/os/file_windows.go
+go14/src/os/getwd.go
+go14/src/os/getwd_darwin.go
+go14/src/os/os_test.go
+go14/src/os/os_unix_test.go
+go14/src/os/os_windows_test.go
+go14/src/os/path.go
+go14/src/os/path_plan9.go
+go14/src/os/path_test.go
+go14/src/os/path_unix.go
+go14/src/os/path_windows.go
+go14/src/os/pipe_bsd.go
+go14/src/os/pipe_linux.go
+go14/src/os/proc.go
+go14/src/os/signal/example_test.go
+go14/src/os/signal/sig.s
+go14/src/os/signal/signal.go
+go14/src/os/signal/signal_stub.go
+go14/src/os/signal/signal_test.go
+go14/src/os/signal/signal_unix.go
+go14/src/os/signal/signal_windows_test.go
+go14/src/os/stat_darwin.go
+go14/src/os/stat_dragonfly.go
+go14/src/os/stat_freebsd.go
+go14/src/os/stat_linux.go
+go14/src/os/stat_nacl.go
+go14/src/os/stat_netbsd.go
+go14/src/os/stat_openbsd.go
+go14/src/os/stat_plan9.go
+go14/src/os/stat_solaris.go
+go14/src/os/stat_windows.go
+go14/src/os/str.go
+go14/src/os/sys_bsd.go
+go14/src/os/sys_darwin.go
+go14/src/os/sys_freebsd.go
+go14/src/os/sys_linux.go
+go14/src/os/sys_nacl.go
+go14/src/os/sys_plan9.go
+go14/src/os/sys_solaris.go
+go14/src/os/sys_unix.go
+go14/src/os/sys_windows.go
+go14/src/os/types.go
+go14/src/os/types_notwin.go
+go14/src/os/types_windows.go
+go14/src/os/user/lookup.go
+go14/src/os/user/lookup_plan9.go
+go14/src/os/user/lookup_stubs.go
+go14/src/os/user/lookup_unix.go
+go14/src/os/user/lookup_windows.go
+go14/src/os/user/user.go
+go14/src/os/user/user_test.go
+go14/src/path/example_test.go
+go14/src/path/filepath/example_unix_test.go
+go14/src/path/filepath/export_test.go
+go14/src/path/filepath/match.go
+go14/src/path/filepath/match_test.go
+go14/src/path/filepath/path.go
+go14/src/path/filepath/path_plan9.go
+go14/src/path/filepath/path_test.go
+go14/src/path/filepath/path_unix.go
+go14/src/path/filepath/path_windows.go
+go14/src/path/filepath/path_windows_test.go
+go14/src/path/filepath/symlink.go
+go14/src/path/filepath/symlink_unix.go
+go14/src/path/filepath/symlink_windows.go
+go14/src/path/match.go
+go14/src/path/match_test.go
+go14/src/path/path.go
+go14/src/path/path_test.go
+go14/src/race.bash
+go14/src/race.bat
+go14/src/reflect/all_test.go
+go14/src/reflect/asm_386.s
+go14/src/reflect/asm_amd64.s
+go14/src/reflect/asm_amd64p32.s
+go14/src/reflect/asm_arm.s
+go14/src/reflect/deepequal.go
+go14/src/reflect/example_test.go
+go14/src/reflect/export_test.go
+go14/src/reflect/makefunc.go
+go14/src/reflect/set_test.go
+go14/src/reflect/tostring_test.go
+go14/src/reflect/type.go
+go14/src/reflect/value.go
+go14/src/regexp/all_test.go
+go14/src/regexp/example_test.go
+go14/src/regexp/exec.go
+go14/src/regexp/exec2_test.go
+go14/src/regexp/exec_test.go
+go14/src/regexp/find_test.go
+go14/src/regexp/onepass.go
+go14/src/regexp/onepass_test.go
+go14/src/regexp/regexp.go
+go14/src/regexp/syntax/compile.go
+go14/src/regexp/syntax/doc.go
+go14/src/regexp/syntax/make_perl_groups.pl
+go14/src/regexp/syntax/parse.go
+go14/src/regexp/syntax/parse_test.go
+go14/src/regexp/syntax/perl_groups.go
+go14/src/regexp/syntax/prog.go
+go14/src/regexp/syntax/prog_test.go
+go14/src/regexp/syntax/regexp.go
+go14/src/regexp/syntax/simplify.go
+go14/src/regexp/syntax/simplify_test.go
+go14/src/regexp/testdata/README
+go14/src/regexp/testdata/basic.dat
+go14/src/regexp/testdata/nullsubexpr.dat
+go14/src/regexp/testdata/re2-exhaustive.txt.bz2
+go14/src/regexp/testdata/re2-search.txt
+go14/src/regexp/testdata/repetition.dat
+go14/src/regexp/testdata/testregex.c
+go14/src/run.bash
+go14/src/run.bat
+go14/src/run.rc
+go14/src/runtime/Makefile
+go14/src/runtime/alg.go
+go14/src/runtime/append_test.go
+go14/src/runtime/arch_386.go
+go14/src/runtime/arch_386.h
+go14/src/runtime/arch_amd64.go
+go14/src/runtime/arch_amd64.h
+go14/src/runtime/arch_amd64p32.go
+go14/src/runtime/arch_amd64p32.h
+go14/src/runtime/arch_arm.go
+go14/src/runtime/arch_arm.h
+go14/src/runtime/asm.s
+go14/src/runtime/asm_386.s
+go14/src/runtime/asm_amd64.s
+go14/src/runtime/asm_amd64p32.s
+go14/src/runtime/asm_arm.s
+go14/src/runtime/atomic.go
+go14/src/runtime/atomic_386.c
+go14/src/runtime/atomic_amd64x.c
+go14/src/runtime/atomic_arm.go
+go14/src/runtime/cgo/asm_386.s
+go14/src/runtime/cgo/asm_amd64.s
+go14/src/runtime/cgo/asm_arm.s
+go14/src/runtime/cgo/asm_nacl_amd64p32.s
+go14/src/runtime/cgo/callbacks.c
+go14/src/runtime/cgo/cgo.go
+go14/src/runtime/cgo/dragonfly.c
+go14/src/runtime/cgo/freebsd.c
+go14/src/runtime/cgo/gcc_386.S
+go14/src/runtime/cgo/gcc_amd64.S
+go14/src/runtime/cgo/gcc_android.c
+go14/src/runtime/cgo/gcc_android_arm.c
+go14/src/runtime/cgo/gcc_arm.S
+go14/src/runtime/cgo/gcc_darwin_386.c
+go14/src/runtime/cgo/gcc_darwin_amd64.c
+go14/src/runtime/cgo/gcc_dragonfly_386.c
+go14/src/runtime/cgo/gcc_dragonfly_amd64.c
+go14/src/runtime/cgo/gcc_fatalf.c
+go14/src/runtime/cgo/gcc_freebsd_386.c
+go14/src/runtime/cgo/gcc_freebsd_amd64.c
+go14/src/runtime/cgo/gcc_freebsd_arm.c
+go14/src/runtime/cgo/gcc_linux_386.c
+go14/src/runtime/cgo/gcc_linux_amd64.c
+go14/src/runtime/cgo/gcc_linux_arm.c
+go14/src/runtime/cgo/gcc_netbsd_386.c
+go14/src/runtime/cgo/gcc_netbsd_amd64.c
+go14/src/runtime/cgo/gcc_netbsd_arm.c
+go14/src/runtime/cgo/gcc_openbsd_386.c
+go14/src/runtime/cgo/gcc_openbsd_amd64.c
+go14/src/runtime/cgo/gcc_setenv.c
+go14/src/runtime/cgo/gcc_solaris_amd64.c
+go14/src/runtime/cgo/gcc_util.c
+go14/src/runtime/cgo/gcc_windows_386.c
+go14/src/runtime/cgo/gcc_windows_amd64.c
+go14/src/runtime/cgo/iscgo.c
+go14/src/runtime/cgo/libcgo.h
+go14/src/runtime/cgo/netbsd.c
+go14/src/runtime/cgo/openbsd.c
+go14/src/runtime/cgo/setenv.c
+go14/src/runtime/cgocall.go
+go14/src/runtime/cgocall.h
+go14/src/runtime/cgocallback.go
+go14/src/runtime/chan.go
+go14/src/runtime/chan.h
+go14/src/runtime/chan_test.go
+go14/src/runtime/closure_test.go
+go14/src/runtime/compiler.go
+go14/src/runtime/complex.go
+go14/src/runtime/complex_test.go
+go14/src/runtime/cpuprof.go
+go14/src/runtime/crash_cgo_test.go
+go14/src/runtime/crash_test.go
+go14/src/runtime/debug.go
+go14/src/runtime/debug/debug.s
+go14/src/runtime/debug/garbage.go
+go14/src/runtime/debug/garbage_test.go
+go14/src/runtime/debug/heapdump_test.go
+go14/src/runtime/debug/stack.go
+go14/src/runtime/debug/stack_test.go
+go14/src/runtime/debug/stubs.go
+go14/src/runtime/debug/stubs.s
+go14/src/runtime/defs.c
+go14/src/runtime/defs1_linux.go
+go14/src/runtime/defs2_linux.go
+go14/src/runtime/defs_android_arm.h
+go14/src/runtime/defs_arm_linux.go
+go14/src/runtime/defs_darwin.go
+go14/src/runtime/defs_darwin_386.h
+go14/src/runtime/defs_darwin_amd64.h
+go14/src/runtime/defs_dragonfly.go
+go14/src/runtime/defs_dragonfly_386.h
+go14/src/runtime/defs_dragonfly_amd64.h
+go14/src/runtime/defs_freebsd.go
+go14/src/runtime/defs_freebsd_386.h
+go14/src/runtime/defs_freebsd_amd64.h
+go14/src/runtime/defs_freebsd_arm.h
+go14/src/runtime/defs_linux.go
+go14/src/runtime/defs_linux_386.h
+go14/src/runtime/defs_linux_amd64.h
+go14/src/runtime/defs_linux_arm.h
+go14/src/runtime/defs_nacl_386.h
+go14/src/runtime/defs_nacl_amd64p32.h
+go14/src/runtime/defs_nacl_arm.h
+go14/src/runtime/defs_netbsd.go
+go14/src/runtime/defs_netbsd_386.go
+go14/src/runtime/defs_netbsd_386.h
+go14/src/runtime/defs_netbsd_amd64.go
+go14/src/runtime/defs_netbsd_amd64.h
+go14/src/runtime/defs_netbsd_arm.go
+go14/src/runtime/defs_netbsd_arm.h
+go14/src/runtime/defs_openbsd.go
+go14/src/runtime/defs_openbsd_386.h
+go14/src/runtime/defs_openbsd_amd64.h
+go14/src/runtime/defs_plan9_386.h
+go14/src/runtime/defs_plan9_amd64.h
+go14/src/runtime/defs_solaris.go
+go14/src/runtime/defs_solaris_amd64.go
+go14/src/runtime/defs_solaris_amd64.h
+go14/src/runtime/defs_windows.go
+go14/src/runtime/defs_windows_386.h
+go14/src/runtime/defs_windows_amd64.h
+go14/src/runtime/env_plan9.go
+go14/src/runtime/env_posix.go
+go14/src/runtime/error.go
+go14/src/runtime/export_futex_test.go
+go14/src/runtime/export_test.go
+go14/src/runtime/extern.go
+go14/src/runtime/float.c
+go14/src/runtime/funcdata.h
+go14/src/runtime/futex_test.go
+go14/src/runtime/gc_test.go
+go14/src/runtime/gcinfo_test.go
+go14/src/runtime/hash_test.go
+go14/src/runtime/hashmap.go
+go14/src/runtime/hashmap_fast.go
+go14/src/runtime/heapdump.c
+go14/src/runtime/iface.go
+go14/src/runtime/iface_test.go
+go14/src/runtime/lfstack.c
+go14/src/runtime/lfstack_test.go
+go14/src/runtime/lock_futex.go
+go14/src/runtime/lock_sema.go
+go14/src/runtime/malloc.c
+go14/src/runtime/malloc.go
+go14/src/runtime/malloc.h
+go14/src/runtime/malloc_test.go
+go14/src/runtime/map_test.go
+go14/src/runtime/mapspeed_test.go
+go14/src/runtime/mcache.c
+go14/src/runtime/mcentral.c
+go14/src/runtime/mem.go
+go14/src/runtime/mem_darwin.c
+go14/src/runtime/mem_dragonfly.c
+go14/src/runtime/mem_freebsd.c
+go14/src/runtime/mem_linux.c
+go14/src/runtime/mem_nacl.c
+go14/src/runtime/mem_netbsd.c
+go14/src/runtime/mem_openbsd.c
+go14/src/runtime/mem_plan9.c
+go14/src/runtime/mem_solaris.c
+go14/src/runtime/mem_windows.c
+go14/src/runtime/memclr_386.s
+go14/src/runtime/memclr_amd64.s
+go14/src/runtime/memclr_arm.s
+go14/src/runtime/memclr_plan9_386.s
+go14/src/runtime/memclr_plan9_amd64.s
+go14/src/runtime/memmove_386.s
+go14/src/runtime/memmove_amd64.s
+go14/src/runtime/memmove_arm.s
+go14/src/runtime/memmove_linux_amd64_test.go
+go14/src/runtime/memmove_nacl_amd64p32.s
+go14/src/runtime/memmove_plan9_386.s
+go14/src/runtime/memmove_plan9_amd64.s
+go14/src/runtime/memmove_test.go
+go14/src/runtime/mfinal_test.go
+go14/src/runtime/mfixalloc.c
+go14/src/runtime/mgc0.c
+go14/src/runtime/mgc0.go
+go14/src/runtime/mgc0.h
+go14/src/runtime/mheap.c
+go14/src/runtime/mknacl.sh
+go14/src/runtime/mprof.go
+go14/src/runtime/msize.c
+go14/src/runtime/netpoll.go
+go14/src/runtime/netpoll_epoll.go
+go14/src/runtime/netpoll_kqueue.go
+go14/src/runtime/netpoll_nacl.go
+go14/src/runtime/netpoll_solaris.c
+go14/src/runtime/netpoll_stub.c
+go14/src/runtime/netpoll_windows.c
+go14/src/runtime/noasm_arm.go
+go14/src/runtime/norace_test.go
+go14/src/runtime/os_android.c
+go14/src/runtime/os_android.h
+go14/src/runtime/os_darwin.c
+go14/src/runtime/os_darwin.go
+go14/src/runtime/os_darwin.h
+go14/src/runtime/os_dragonfly.c
+go14/src/runtime/os_dragonfly.go
+go14/src/runtime/os_dragonfly.h
+go14/src/runtime/os_freebsd.c
+go14/src/runtime/os_freebsd.go
+go14/src/runtime/os_freebsd.h
+go14/src/runtime/os_freebsd_arm.c
+go14/src/runtime/os_linux.c
+go14/src/runtime/os_linux.go
+go14/src/runtime/os_linux.h
+go14/src/runtime/os_linux_386.c
+go14/src/runtime/os_linux_arm.c
+go14/src/runtime/os_nacl.c
+go14/src/runtime/os_nacl.go
+go14/src/runtime/os_nacl.h
+go14/src/runtime/os_nacl_arm.c
+go14/src/runtime/os_netbsd.c
+go14/src/runtime/os_netbsd.go
+go14/src/runtime/os_netbsd.h
+go14/src/runtime/os_netbsd_386.c
+go14/src/runtime/os_netbsd_amd64.c
+go14/src/runtime/os_netbsd_arm.c
+go14/src/runtime/os_openbsd.c
+go14/src/runtime/os_openbsd.go
+go14/src/runtime/os_openbsd.h
+go14/src/runtime/os_plan9.c
+go14/src/runtime/os_plan9.go
+go14/src/runtime/os_plan9.h
+go14/src/runtime/os_plan9_386.c
+go14/src/runtime/os_plan9_amd64.c
+go14/src/runtime/os_solaris.c
+go14/src/runtime/os_solaris.go
+go14/src/runtime/os_solaris.h
+go14/src/runtime/os_windows.c
+go14/src/runtime/os_windows.go
+go14/src/runtime/os_windows.h
+go14/src/runtime/os_windows_386.c
+go14/src/runtime/os_windows_386.go
+go14/src/runtime/os_windows_amd64.c
+go14/src/runtime/os_windows_amd64.go
+go14/src/runtime/panic.c
+go14/src/runtime/panic.go
+go14/src/runtime/parfor.c
+go14/src/runtime/parfor_test.go
+go14/src/runtime/pprof/mprof_test.go
+go14/src/runtime/pprof/pprof.go
+go14/src/runtime/pprof/pprof_test.go
+go14/src/runtime/print1.go
+go14/src/runtime/proc.c
+go14/src/runtime/proc.go
+go14/src/runtime/proc_test.go
+go14/src/runtime/race.c
+go14/src/runtime/race.go
+go14/src/runtime/race.h
+go14/src/runtime/race/README
+go14/src/runtime/race/doc.go
+go14/src/runtime/race/output_test.go
+go14/src/runtime/race/race.go
+go14/src/runtime/race/race_darwin_amd64.syso
+go14/src/runtime/race/race_freebsd_amd64.syso
+go14/src/runtime/race/race_linux_amd64.syso
+go14/src/runtime/race/race_test.go
+go14/src/runtime/race/race_unix_test.go
+go14/src/runtime/race/race_windows_amd64.syso
+go14/src/runtime/race/testdata/atomic_test.go
+go14/src/runtime/race/testdata/cgo_test.go
+go14/src/runtime/race/testdata/cgo_test_main.go
+go14/src/runtime/race/testdata/chan_test.go
+go14/src/runtime/race/testdata/comp_test.go
+go14/src/runtime/race/testdata/finalizer_test.go
+go14/src/runtime/race/testdata/io_test.go
+go14/src/runtime/race/testdata/map_test.go
+go14/src/runtime/race/testdata/mop_test.go
+go14/src/runtime/race/testdata/mutex_test.go
+go14/src/runtime/race/testdata/regression_test.go
+go14/src/runtime/race/testdata/rwmutex_test.go
+go14/src/runtime/race/testdata/select_test.go
+go14/src/runtime/race/testdata/slice_test.go
+go14/src/runtime/race/testdata/sync_test.go
+go14/src/runtime/race/testdata/waitgroup_test.go
+go14/src/runtime/race0.go
+go14/src/runtime/race_amd64.s
+go14/src/runtime/rdebug.go
+go14/src/runtime/rt0_android_arm.s
+go14/src/runtime/rt0_darwin_386.s
+go14/src/runtime/rt0_darwin_amd64.s
+go14/src/runtime/rt0_dragonfly_386.s
+go14/src/runtime/rt0_dragonfly_amd64.s
+go14/src/runtime/rt0_freebsd_386.s
+go14/src/runtime/rt0_freebsd_amd64.s
+go14/src/runtime/rt0_freebsd_arm.s
+go14/src/runtime/rt0_linux_386.s
+go14/src/runtime/rt0_linux_amd64.s
+go14/src/runtime/rt0_linux_arm.s
+go14/src/runtime/rt0_nacl_386.s
+go14/src/runtime/rt0_nacl_amd64p32.s
+go14/src/runtime/rt0_nacl_arm.s
+go14/src/runtime/rt0_netbsd_386.s
+go14/src/runtime/rt0_netbsd_amd64.s
+go14/src/runtime/rt0_netbsd_arm.s
+go14/src/runtime/rt0_openbsd_386.s
+go14/src/runtime/rt0_openbsd_amd64.s
+go14/src/runtime/rt0_plan9_386.s
+go14/src/runtime/rt0_plan9_amd64.s
+go14/src/runtime/rt0_solaris_amd64.s
+go14/src/runtime/rt0_windows_386.s
+go14/src/runtime/rt0_windows_amd64.s
+go14/src/runtime/rune.go
+go14/src/runtime/runtime-gdb.py
+go14/src/runtime/runtime.c
+go14/src/runtime/runtime.go
+go14/src/runtime/runtime.h
+go14/src/runtime/runtime_linux_test.go
+go14/src/runtime/runtime_test.go
+go14/src/runtime/runtime_unix_test.go
+go14/src/runtime/select.go
+go14/src/runtime/sema.go
+go14/src/runtime/signal.c
+go14/src/runtime/signal_386.c
+go14/src/runtime/signal_amd64x.c
+go14/src/runtime/signal_android_386.h
+go14/src/runtime/signal_android_arm.h
+go14/src/runtime/signal_arm.c
+go14/src/runtime/signal_darwin_386.h
+go14/src/runtime/signal_darwin_amd64.h
+go14/src/runtime/signal_dragonfly_386.h
+go14/src/runtime/signal_dragonfly_amd64.h
+go14/src/runtime/signal_freebsd_386.h
+go14/src/runtime/signal_freebsd_amd64.h
+go14/src/runtime/signal_freebsd_arm.h
+go14/src/runtime/signal_linux_386.h
+go14/src/runtime/signal_linux_amd64.h
+go14/src/runtime/signal_linux_arm.h
+go14/src/runtime/signal_nacl_386.h
+go14/src/runtime/signal_nacl_amd64p32.h
+go14/src/runtime/signal_nacl_arm.h
+go14/src/runtime/signal_netbsd_386.h
+go14/src/runtime/signal_netbsd_amd64.h
+go14/src/runtime/signal_netbsd_arm.h
+go14/src/runtime/signal_openbsd_386.h
+go14/src/runtime/signal_openbsd_amd64.h
+go14/src/runtime/signal_solaris_amd64.h
+go14/src/runtime/signal_unix.c
+go14/src/runtime/signal_unix.go
+go14/src/runtime/signal_unix.h
+go14/src/runtime/signals_android.h
+go14/src/runtime/signals_darwin.h
+go14/src/runtime/signals_dragonfly.h
+go14/src/runtime/signals_freebsd.h
+go14/src/runtime/signals_linux.h
+go14/src/runtime/signals_nacl.h
+go14/src/runtime/signals_netbsd.h
+go14/src/runtime/signals_openbsd.h
+go14/src/runtime/signals_plan9.h
+go14/src/runtime/signals_solaris.h
+go14/src/runtime/signals_windows.h
+go14/src/runtime/sigpanic_unix.go
+go14/src/runtime/sigqueue.go
+go14/src/runtime/slice.go
+go14/src/runtime/softfloat64.go
+go14/src/runtime/softfloat64_test.go
+go14/src/runtime/softfloat_arm.c
+go14/src/runtime/sqrt.go
+go14/src/runtime/stack.c
+go14/src/runtime/stack.go
+go14/src/runtime/stack.h
+go14/src/runtime/stack_test.go
+go14/src/runtime/string.c
+go14/src/runtime/string.go
+go14/src/runtime/string_test.go
+go14/src/runtime/stubs.go
+go14/src/runtime/symtab.go
+go14/src/runtime/symtab_test.go
+go14/src/runtime/sys_arm.c
+go14/src/runtime/sys_darwin_386.s
+go14/src/runtime/sys_darwin_amd64.s
+go14/src/runtime/sys_dragonfly_386.s
+go14/src/runtime/sys_dragonfly_amd64.s
+go14/src/runtime/sys_freebsd_386.s
+go14/src/runtime/sys_freebsd_amd64.s
+go14/src/runtime/sys_freebsd_arm.s
+go14/src/runtime/sys_linux_386.s
+go14/src/runtime/sys_linux_amd64.s
+go14/src/runtime/sys_linux_arm.s
+go14/src/runtime/sys_nacl_386.s
+go14/src/runtime/sys_nacl_amd64p32.s
+go14/src/runtime/sys_nacl_arm.s
+go14/src/runtime/sys_netbsd_386.s
+go14/src/runtime/sys_netbsd_amd64.s
+go14/src/runtime/sys_netbsd_arm.s
+go14/src/runtime/sys_openbsd_386.s
+go14/src/runtime/sys_openbsd_amd64.s
+go14/src/runtime/sys_plan9_386.s
+go14/src/runtime/sys_plan9_amd64.s
+go14/src/runtime/sys_solaris_amd64.s
+go14/src/runtime/sys_windows_386.s
+go14/src/runtime/sys_windows_amd64.s
+go14/src/runtime/sys_x86.c
+go14/src/runtime/syscall_nacl.h
+go14/src/runtime/syscall_solaris.c
+go14/src/runtime/syscall_solaris.go
+go14/src/runtime/syscall_windows.go
+go14/src/runtime/syscall_windows_test.go
+go14/src/runtime/thunk.s
+go14/src/runtime/thunk_solaris_amd64.s
+go14/src/runtime/thunk_windows.s
+go14/src/runtime/time.go
+go14/src/runtime/tls_arm.s
+go14/src/runtime/traceback.go
+go14/src/runtime/type.h
+go14/src/runtime/typekind.go
+go14/src/runtime/typekind.h
+go14/src/runtime/vdso_linux_amd64.c
+go14/src/runtime/vlop_386.s
+go14/src/runtime/vlop_arm.s
+go14/src/runtime/vlop_arm_test.go
+go14/src/runtime/vlrt.c
+go14/src/runtime/vlrt.go
+go14/src/runtime/zaexperiment.h
+go14/src/runtime/zasm_${GO_PLATFORM}.h
+go14/src/runtime/zgoarch_${GOARCH}.go
+go14/src/runtime/zgoos_${LOWER_OPSYS}.go
+go14/src/runtime/zruntime_defs_${GO_PLATFORM}.go
+go14/src/runtime/zsys_${GO_PLATFORM}.s
+go14/src/runtime/zversion.go
+go14/src/sort/example_interface_test.go
+go14/src/sort/example_keys_test.go
+go14/src/sort/example_multi_test.go
+go14/src/sort/example_test.go
+go14/src/sort/example_wrapper_test.go
+go14/src/sort/export_test.go
+go14/src/sort/search.go
+go14/src/sort/search_test.go
+go14/src/sort/sort.go
+go14/src/sort/sort_test.go
+go14/src/strconv/atob.go
+go14/src/strconv/atob_test.go
+go14/src/strconv/atof.go
+go14/src/strconv/atof_test.go
+go14/src/strconv/atoi.go
+go14/src/strconv/atoi_test.go
+go14/src/strconv/decimal.go
+go14/src/strconv/decimal_test.go
+go14/src/strconv/extfloat.go
+go14/src/strconv/fp_test.go
+go14/src/strconv/ftoa.go
+go14/src/strconv/ftoa_test.go
+go14/src/strconv/internal_test.go
+go14/src/strconv/isprint.go
+go14/src/strconv/itoa.go
+go14/src/strconv/itoa_test.go
+go14/src/strconv/makeisprint.go
+go14/src/strconv/quote.go
+go14/src/strconv/quote_example_test.go
+go14/src/strconv/quote_test.go
+go14/src/strconv/strconv_test.go
+go14/src/strconv/testdata/testfp.txt
+go14/src/strings/example_test.go
+go14/src/strings/export_test.go
+go14/src/strings/reader.go
+go14/src/strings/reader_test.go
+go14/src/strings/replace.go
+go14/src/strings/replace_test.go
+go14/src/strings/search.go
+go14/src/strings/search_test.go
+go14/src/strings/strings.go
+go14/src/strings/strings.s
+go14/src/strings/strings_decl.go
+go14/src/strings/strings_test.go
+go14/src/sudo.bash
+go14/src/sync/atomic/64bit_arm.go
+go14/src/sync/atomic/asm_386.s
+go14/src/sync/atomic/asm_amd64.s
+go14/src/sync/atomic/asm_amd64p32.s
+go14/src/sync/atomic/asm_arm.s
+go14/src/sync/atomic/asm_freebsd_arm.s
+go14/src/sync/atomic/asm_linux_arm.s
+go14/src/sync/atomic/asm_nacl_arm.s
+go14/src/sync/atomic/asm_netbsd_arm.s
+go14/src/sync/atomic/atomic_linux_arm_test.go
+go14/src/sync/atomic/atomic_test.go
+go14/src/sync/atomic/doc.go
+go14/src/sync/atomic/export_linux_arm_test.go
+go14/src/sync/atomic/race.s
+go14/src/sync/atomic/value.go
+go14/src/sync/atomic/value_test.go
+go14/src/sync/cond.go
+go14/src/sync/cond_test.go
+go14/src/sync/example_test.go
+go14/src/sync/export_test.go
+go14/src/sync/mutex.go
+go14/src/sync/mutex_test.go
+go14/src/sync/once.go
+go14/src/sync/once_test.go
+go14/src/sync/pool.go
+go14/src/sync/pool_test.go
+go14/src/sync/race.go
+go14/src/sync/race0.go
+go14/src/sync/runtime.go
+go14/src/sync/runtime_sema_test.go
+go14/src/sync/rwmutex.go
+go14/src/sync/rwmutex_test.go
+go14/src/sync/waitgroup.go
+go14/src/sync/waitgroup_test.go
+go14/src/syscall/asm.s
+go14/src/syscall/asm_darwin_386.s
+go14/src/syscall/asm_darwin_amd64.s
+go14/src/syscall/asm_dragonfly_386.s
+go14/src/syscall/asm_dragonfly_amd64.s
+go14/src/syscall/asm_freebsd_386.s
+go14/src/syscall/asm_freebsd_amd64.s
+go14/src/syscall/asm_freebsd_arm.s
+go14/src/syscall/asm_linux_386.s
+go14/src/syscall/asm_linux_amd64.s
+go14/src/syscall/asm_linux_arm.s
+go14/src/syscall/asm_nacl_386.s
+go14/src/syscall/asm_nacl_amd64p32.s
+go14/src/syscall/asm_nacl_arm.s
+go14/src/syscall/asm_netbsd_386.s
+go14/src/syscall/asm_netbsd_amd64.s
+go14/src/syscall/asm_netbsd_arm.s
+go14/src/syscall/asm_openbsd_386.s
+go14/src/syscall/asm_openbsd_amd64.s
+go14/src/syscall/asm_plan9_386.s
+go14/src/syscall/asm_plan9_amd64.s
+go14/src/syscall/asm_solaris_amd64.s
+go14/src/syscall/bpf_bsd.go
+go14/src/syscall/creds_test.go
+go14/src/syscall/dir_plan9.go
+go14/src/syscall/dll_windows.go
+go14/src/syscall/env_plan9.go
+go14/src/syscall/env_unix.go
+go14/src/syscall/env_windows.go
+go14/src/syscall/exec_bsd.go
+go14/src/syscall/exec_linux.go
+go14/src/syscall/exec_plan9.go
+go14/src/syscall/exec_solaris.go
+go14/src/syscall/exec_unix.go
+go14/src/syscall/exec_windows.go
+go14/src/syscall/export_test.go
+go14/src/syscall/fd_nacl.go
+go14/src/syscall/flock.go
+go14/src/syscall/flock_linux_32bit.go
+go14/src/syscall/fs_nacl.go
+go14/src/syscall/lsf_linux.go
+go14/src/syscall/mkall.sh
+go14/src/syscall/mkall_windows.bat
+go14/src/syscall/mkerrors.sh
+go14/src/syscall/mksyscall.pl
+go14/src/syscall/mksyscall_solaris.pl
+go14/src/syscall/mksyscall_windows.go
+go14/src/syscall/mksysctl_openbsd.pl
+go14/src/syscall/mksysnum_darwin.pl
+go14/src/syscall/mksysnum_dragonfly.pl
+go14/src/syscall/mksysnum_freebsd.pl
+go14/src/syscall/mksysnum_linux.pl
+go14/src/syscall/mksysnum_netbsd.pl
+go14/src/syscall/mksysnum_openbsd.pl
+go14/src/syscall/mksysnum_plan9.sh
+go14/src/syscall/mmap_unix_test.go
+go14/src/syscall/net_nacl.go
+go14/src/syscall/netlink_linux.go
+go14/src/syscall/race.go
+go14/src/syscall/race0.go
+go14/src/syscall/route_bsd.go
+go14/src/syscall/route_darwin.go
+go14/src/syscall/route_dragonfly.go
+go14/src/syscall/route_freebsd.go
+go14/src/syscall/route_freebsd_32bit.go
+go14/src/syscall/route_freebsd_64bit.go
+go14/src/syscall/route_netbsd.go
+go14/src/syscall/route_openbsd.go
+go14/src/syscall/security_windows.go
+go14/src/syscall/so_solaris.go
+go14/src/syscall/sockcmsg_linux.go
+go14/src/syscall/sockcmsg_unix.go
+go14/src/syscall/srpc_nacl.go
+go14/src/syscall/str.go
+go14/src/syscall/syscall.go
+go14/src/syscall/syscall_bsd.go
+go14/src/syscall/syscall_bsd_test.go
+go14/src/syscall/syscall_darwin.go
+go14/src/syscall/syscall_darwin_386.go
+go14/src/syscall/syscall_darwin_amd64.go
+go14/src/syscall/syscall_dragonfly.go
+go14/src/syscall/syscall_dragonfly_386.go
+go14/src/syscall/syscall_dragonfly_amd64.go
+go14/src/syscall/syscall_freebsd.go
+go14/src/syscall/syscall_freebsd_386.go
+go14/src/syscall/syscall_freebsd_amd64.go
+go14/src/syscall/syscall_freebsd_arm.go
+go14/src/syscall/syscall_linux.go
+go14/src/syscall/syscall_linux_386.go
+go14/src/syscall/syscall_linux_amd64.go
+go14/src/syscall/syscall_linux_arm.go
+go14/src/syscall/syscall_nacl.go
+go14/src/syscall/syscall_nacl_386.go
+go14/src/syscall/syscall_nacl_amd64p32.go
+go14/src/syscall/syscall_nacl_arm.go
+go14/src/syscall/syscall_netbsd.go
+go14/src/syscall/syscall_netbsd_386.go
+go14/src/syscall/syscall_netbsd_amd64.go
+go14/src/syscall/syscall_netbsd_arm.go
+go14/src/syscall/syscall_no_getwd.go
+go14/src/syscall/syscall_openbsd.go
+go14/src/syscall/syscall_openbsd_386.go
+go14/src/syscall/syscall_openbsd_amd64.go
+go14/src/syscall/syscall_plan9.go
+go14/src/syscall/syscall_solaris.go
+go14/src/syscall/syscall_solaris_amd64.go
+go14/src/syscall/syscall_test.go
+go14/src/syscall/syscall_unix.go
+go14/src/syscall/syscall_unix_test.go
+go14/src/syscall/syscall_windows.go
+go14/src/syscall/syscall_windows_386.go
+go14/src/syscall/syscall_windows_amd64.go
+go14/src/syscall/syscall_windows_test.go
+go14/src/syscall/tables_nacl.go
+go14/src/syscall/time_nacl_386.s
+go14/src/syscall/time_nacl_amd64p32.s
+go14/src/syscall/time_nacl_arm.s
+go14/src/syscall/types_darwin.go
+go14/src/syscall/types_dragonfly.go
+go14/src/syscall/types_freebsd.go
+go14/src/syscall/types_linux.go
+go14/src/syscall/types_netbsd.go
+go14/src/syscall/types_openbsd.go
+go14/src/syscall/types_plan9.c
+go14/src/syscall/types_solaris.go
+go14/src/syscall/unzip_nacl.go
+go14/src/syscall/zerrors_darwin_386.go
+go14/src/syscall/zerrors_darwin_amd64.go
+go14/src/syscall/zerrors_dragonfly_386.go
+go14/src/syscall/zerrors_dragonfly_amd64.go
+go14/src/syscall/zerrors_freebsd_386.go
+go14/src/syscall/zerrors_freebsd_amd64.go
+go14/src/syscall/zerrors_freebsd_arm.go
+go14/src/syscall/zerrors_linux_386.go
+go14/src/syscall/zerrors_linux_amd64.go
+go14/src/syscall/zerrors_linux_arm.go
+go14/src/syscall/zerrors_netbsd_386.go
+go14/src/syscall/zerrors_netbsd_amd64.go
+go14/src/syscall/zerrors_netbsd_arm.go
+go14/src/syscall/zerrors_openbsd_386.go
+go14/src/syscall/zerrors_openbsd_amd64.go
+go14/src/syscall/zerrors_plan9_386.go
+go14/src/syscall/zerrors_plan9_amd64.go
+go14/src/syscall/zerrors_solaris_amd64.go
+go14/src/syscall/zerrors_windows.go
+go14/src/syscall/zerrors_windows_386.go
+go14/src/syscall/zerrors_windows_amd64.go
+go14/src/syscall/zsyscall_darwin_386.go
+go14/src/syscall/zsyscall_darwin_amd64.go
+go14/src/syscall/zsyscall_dragonfly_386.go
+go14/src/syscall/zsyscall_dragonfly_amd64.go
+go14/src/syscall/zsyscall_freebsd_386.go
+go14/src/syscall/zsyscall_freebsd_amd64.go
+go14/src/syscall/zsyscall_freebsd_arm.go
+go14/src/syscall/zsyscall_linux_386.go
+go14/src/syscall/zsyscall_linux_amd64.go
+go14/src/syscall/zsyscall_linux_arm.go
+go14/src/syscall/zsyscall_nacl_386.go
+go14/src/syscall/zsyscall_nacl_amd64p32.go
+go14/src/syscall/zsyscall_nacl_arm.go
+go14/src/syscall/zsyscall_netbsd_386.go
+go14/src/syscall/zsyscall_netbsd_amd64.go
+go14/src/syscall/zsyscall_netbsd_arm.go
+go14/src/syscall/zsyscall_openbsd_386.go
+go14/src/syscall/zsyscall_openbsd_amd64.go
+go14/src/syscall/zsyscall_plan9_386.go
+go14/src/syscall/zsyscall_plan9_amd64.go
+go14/src/syscall/zsyscall_solaris_amd64.go
+go14/src/syscall/zsyscall_windows.go
+go14/src/syscall/zsysctl_openbsd.go
+go14/src/syscall/zsysnum_darwin_386.go
+go14/src/syscall/zsysnum_darwin_amd64.go
+go14/src/syscall/zsysnum_dragonfly_386.go
+go14/src/syscall/zsysnum_dragonfly_amd64.go
+go14/src/syscall/zsysnum_freebsd_386.go
+go14/src/syscall/zsysnum_freebsd_amd64.go
+go14/src/syscall/zsysnum_freebsd_arm.go
+go14/src/syscall/zsysnum_linux_386.go
+go14/src/syscall/zsysnum_linux_amd64.go
+go14/src/syscall/zsysnum_linux_arm.go
+go14/src/syscall/zsysnum_netbsd_386.go
+go14/src/syscall/zsysnum_netbsd_amd64.go
+go14/src/syscall/zsysnum_netbsd_arm.go
+go14/src/syscall/zsysnum_openbsd_386.go
+go14/src/syscall/zsysnum_openbsd_amd64.go
+go14/src/syscall/zsysnum_plan9_386.go
+go14/src/syscall/zsysnum_plan9_amd64.go
+go14/src/syscall/zsysnum_solaris_amd64.go
+go14/src/syscall/zsysnum_windows_386.go
+go14/src/syscall/zsysnum_windows_amd64.go
+go14/src/syscall/ztypes_darwin_386.go
+go14/src/syscall/ztypes_darwin_amd64.go
+go14/src/syscall/ztypes_dragonfly_386.go
+go14/src/syscall/ztypes_dragonfly_amd64.go
+go14/src/syscall/ztypes_freebsd_386.go
+go14/src/syscall/ztypes_freebsd_amd64.go
+go14/src/syscall/ztypes_freebsd_arm.go
+go14/src/syscall/ztypes_linux_386.go
+go14/src/syscall/ztypes_linux_amd64.go
+go14/src/syscall/ztypes_linux_arm.go
+go14/src/syscall/ztypes_netbsd_386.go
+go14/src/syscall/ztypes_netbsd_amd64.go
+go14/src/syscall/ztypes_netbsd_arm.go
+go14/src/syscall/ztypes_openbsd_386.go
+go14/src/syscall/ztypes_openbsd_amd64.go
+go14/src/syscall/ztypes_plan9_386.go
+go14/src/syscall/ztypes_plan9_amd64.go
+go14/src/syscall/ztypes_solaris_amd64.go
+go14/src/syscall/ztypes_windows.go
+go14/src/syscall/ztypes_windows_386.go
+go14/src/syscall/ztypes_windows_amd64.go
+go14/src/testing/allocs.go
+go14/src/testing/allocs_test.go
+go14/src/testing/benchmark.go
+go14/src/testing/benchmark_test.go
+go14/src/testing/cover.go
+go14/src/testing/example.go
+go14/src/testing/export_test.go
+go14/src/testing/iotest/logger.go
+go14/src/testing/iotest/reader.go
+go14/src/testing/iotest/writer.go
+go14/src/testing/quick/quick.go
+go14/src/testing/quick/quick_test.go
+go14/src/testing/testing.go
+go14/src/testing/testing_test.go
+go14/src/text/scanner/scanner.go
+go14/src/text/scanner/scanner_test.go
+go14/src/text/tabwriter/example_test.go
+go14/src/text/tabwriter/tabwriter.go
+go14/src/text/tabwriter/tabwriter_test.go
+go14/src/text/template/doc.go
+go14/src/text/template/example_test.go
+go14/src/text/template/examplefiles_test.go
+go14/src/text/template/examplefunc_test.go
+go14/src/text/template/exec.go
+go14/src/text/template/exec_test.go
+go14/src/text/template/funcs.go
+go14/src/text/template/helper.go
+go14/src/text/template/multi_test.go
+go14/src/text/template/parse/lex.go
+go14/src/text/template/parse/lex_test.go
+go14/src/text/template/parse/node.go
+go14/src/text/template/parse/parse.go
+go14/src/text/template/parse/parse_test.go
+go14/src/text/template/template.go
+go14/src/text/template/testdata/file1.tmpl
+go14/src/text/template/testdata/file2.tmpl
+go14/src/text/template/testdata/tmpl1.tmpl
+go14/src/text/template/testdata/tmpl2.tmpl
+go14/src/time/example_test.go
+go14/src/time/export_test.go
+go14/src/time/export_windows_test.go
+go14/src/time/format.go
+go14/src/time/format_test.go
+go14/src/time/genzabbrs.go
+go14/src/time/internal_test.go
+go14/src/time/sleep.go
+go14/src/time/sleep_test.go
+go14/src/time/sys_plan9.go
+go14/src/time/sys_unix.go
+go14/src/time/sys_windows.go
+go14/src/time/tick.go
+go14/src/time/tick_test.go
+go14/src/time/time.go
+go14/src/time/time_test.go
+go14/src/time/zoneinfo.go
+go14/src/time/zoneinfo_abbrs_windows.go
+go14/src/time/zoneinfo_plan9.go
+go14/src/time/zoneinfo_read.go
+go14/src/time/zoneinfo_test.go
+go14/src/time/zoneinfo_unix.go
+go14/src/time/zoneinfo_windows.go
+go14/src/time/zoneinfo_windows_test.go
+go14/src/unicode/casetables.go
+go14/src/unicode/digit.go
+go14/src/unicode/digit_test.go
+go14/src/unicode/graphic.go
+go14/src/unicode/graphic_test.go
+go14/src/unicode/letter.go
+go14/src/unicode/letter_test.go
+go14/src/unicode/maketables.go
+go14/src/unicode/script_test.go
+go14/src/unicode/tables.go
+go14/src/unicode/utf16/export_test.go
+go14/src/unicode/utf16/utf16.go
+go14/src/unicode/utf16/utf16_test.go
+go14/src/unicode/utf8/example_test.go
+go14/src/unicode/utf8/utf8.go
+go14/src/unicode/utf8/utf8_test.go
+go14/src/unsafe/unsafe.go
+go14/test/235.go
+go14/test/64bit.go
+go14/test/alias.go
+go14/test/alias1.go
+go14/test/append.go
+go14/test/args.go
+go14/test/assign.go
+go14/test/assign1.go
+go14/test/bench/garbage/Makefile
+go14/test/bench/garbage/parser.go
+go14/test/bench/garbage/peano.go
+go14/test/bench/garbage/stats.go
+go14/test/bench/garbage/tree.go
+go14/test/bench/garbage/tree2.go
+go14/test/bench/go1/binarytree_test.go
+go14/test/bench/go1/fannkuch_test.go
+go14/test/bench/go1/fasta_test.go
+go14/test/bench/go1/fmt_test.go
+go14/test/bench/go1/gob_test.go
+go14/test/bench/go1/gzip_test.go
+go14/test/bench/go1/http_test.go
+go14/test/bench/go1/json_test.go
+go14/test/bench/go1/jsondata_test.go
+go14/test/bench/go1/mandel_test.go
+go14/test/bench/go1/parser_test.go
+go14/test/bench/go1/parserdata_test.go
+go14/test/bench/go1/regexp_test.go
+go14/test/bench/go1/revcomp_test.go
+go14/test/bench/go1/template_test.go
+go14/test/bench/go1/time_test.go
+go14/test/bench/shootout/binary-tree-freelist.go
+go14/test/bench/shootout/binary-tree-freelist.txt
+go14/test/bench/shootout/binary-tree.c
+go14/test/bench/shootout/binary-tree.go
+go14/test/bench/shootout/binary-tree.txt
+go14/test/bench/shootout/chameneosredux.c
+go14/test/bench/shootout/chameneosredux.go
+go14/test/bench/shootout/chameneosredux.txt
+go14/test/bench/shootout/fannkuch-parallel.go
+go14/test/bench/shootout/fannkuch-parallel.txt
+go14/test/bench/shootout/fannkuch.c
+go14/test/bench/shootout/fannkuch.go
+go14/test/bench/shootout/fannkuch.txt
+go14/test/bench/shootout/fasta-1000.out
+go14/test/bench/shootout/fasta.c
+go14/test/bench/shootout/fasta.go
+go14/test/bench/shootout/fasta.txt
+go14/test/bench/shootout/k-nucleotide-parallel.go
+go14/test/bench/shootout/k-nucleotide-parallel.txt
+go14/test/bench/shootout/k-nucleotide.c
+go14/test/bench/shootout/k-nucleotide.go
+go14/test/bench/shootout/k-nucleotide.txt
+go14/test/bench/shootout/mandelbrot.c
+go14/test/bench/shootout/mandelbrot.go
+go14/test/bench/shootout/mandelbrot.txt
+go14/test/bench/shootout/meteor-contest.c
+go14/test/bench/shootout/meteor-contest.go
+go14/test/bench/shootout/meteor-contest.txt
+go14/test/bench/shootout/nbody.c
+go14/test/bench/shootout/nbody.go
+go14/test/bench/shootout/nbody.txt
+go14/test/bench/shootout/pidigits.c
+go14/test/bench/shootout/pidigits.go
+go14/test/bench/shootout/pidigits.txt
+go14/test/bench/shootout/regex-dna-parallel.go
+go14/test/bench/shootout/regex-dna-parallel.txt
+go14/test/bench/shootout/regex-dna.c
+go14/test/bench/shootout/regex-dna.go
+go14/test/bench/shootout/regex-dna.txt
+go14/test/bench/shootout/reverse-complement.c
+go14/test/bench/shootout/reverse-complement.go
+go14/test/bench/shootout/reverse-complement.txt
+go14/test/bench/shootout/spectral-norm-parallel.go
+go14/test/bench/shootout/spectral-norm.c
+go14/test/bench/shootout/spectral-norm.go
+go14/test/bench/shootout/spectral-norm.txt
+go14/test/bench/shootout/threadring.c
+go14/test/bench/shootout/threadring.go
+go14/test/bench/shootout/threadring.txt
+go14/test/bench/shootout/timing.log
+go14/test/bench/shootout/timing.sh
+go14/test/bigalg.go
+go14/test/bigmap.go
+go14/test/blank.go
+go14/test/blank1.go
+go14/test/bom.go
+go14/test/bombad.go
+go14/test/bounds.go
+go14/test/bugs/bug395.go
+go14/test/bugs/placeholder
+go14/test/chan/doubleselect.go
+go14/test/chan/fifo.go
+go14/test/chan/goroutines.go
+go14/test/chan/nonblock.go
+go14/test/chan/perm.go
+go14/test/chan/powser1.go
+go14/test/chan/powser2.go
+go14/test/chan/select.go
+go14/test/chan/select2.go
+go14/test/chan/select3.go
+go14/test/chan/select4.go
+go14/test/chan/select5.go
+go14/test/chan/select6.go
+go14/test/chan/select7.go
+go14/test/chan/sendstmt.go
+go14/test/chan/sieve1.go
+go14/test/chan/sieve2.go
+go14/test/chan/zerosize.go
+go14/test/chancap.go
+go14/test/char_lit.go
+go14/test/char_lit1.go
+go14/test/closedchan.go
+go14/test/closure.go
+go14/test/cmp.go
+go14/test/cmp6.go
+go14/test/cmplx.go
+go14/test/cmplxdivide.c
+go14/test/cmplxdivide.go
+go14/test/cmplxdivide1.go
+go14/test/complit.go
+go14/test/complit1.go
+go14/test/compos.go
+go14/test/const.go
+go14/test/const1.go
+go14/test/const2.go
+go14/test/const3.go
+go14/test/const4.go
+go14/test/const5.go
+go14/test/const6.go
+go14/test/convT2X.go
+go14/test/convert.go
+go14/test/convert1.go
+go14/test/convert3.go
+go14/test/convlit.go
+go14/test/convlit1.go
+go14/test/copy.go
+go14/test/crlf.go
+go14/test/ddd.go
+go14/test/ddd1.go
+go14/test/ddd2.dir/ddd2.go
+go14/test/ddd2.dir/ddd3.go
+go14/test/ddd2.go
+go14/test/decl.go
+go14/test/declbad.go
+go14/test/defer.go
+go14/test/deferfin.go
+go14/test/deferprint.go
+go14/test/deferprint.out
+go14/test/divide.go
+go14/test/divmod.go
+go14/test/dwarf/dwarf.dir/main.go
+go14/test/dwarf/dwarf.dir/z1.go
+go14/test/dwarf/dwarf.dir/z10.go
+go14/test/dwarf/dwarf.dir/z11.go
+go14/test/dwarf/dwarf.dir/z12.go
+go14/test/dwarf/dwarf.dir/z13.go
+go14/test/dwarf/dwarf.dir/z14.go
+go14/test/dwarf/dwarf.dir/z15.go
+go14/test/dwarf/dwarf.dir/z16.go
+go14/test/dwarf/dwarf.dir/z17.go
+go14/test/dwarf/dwarf.dir/z18.go
+go14/test/dwarf/dwarf.dir/z19.go
+go14/test/dwarf/dwarf.dir/z2.go
+go14/test/dwarf/dwarf.dir/z20.go
+go14/test/dwarf/dwarf.dir/z3.go
+go14/test/dwarf/dwarf.dir/z4.go
+go14/test/dwarf/dwarf.dir/z5.go
+go14/test/dwarf/dwarf.dir/z6.go
+go14/test/dwarf/dwarf.dir/z7.go
+go14/test/dwarf/dwarf.dir/z8.go
+go14/test/dwarf/dwarf.dir/z9.go
+go14/test/dwarf/dwarf.go
+go14/test/dwarf/linedirectives.go
+go14/test/empty.go
+go14/test/env.go
+go14/test/eof.go
+go14/test/eof1.go
+go14/test/errchk
+go14/test/escape.go
+go14/test/escape2.go
+go14/test/escape2n.go
+go14/test/escape3.go
+go14/test/escape4.go
+go14/test/escape5.go
+go14/test/fixedbugs/bug000.go
+go14/test/fixedbugs/bug002.go
+go14/test/fixedbugs/bug003.go
+go14/test/fixedbugs/bug004.go
+go14/test/fixedbugs/bug005.go
+go14/test/fixedbugs/bug006.go
+go14/test/fixedbugs/bug007.go
+go14/test/fixedbugs/bug008.go
+go14/test/fixedbugs/bug009.go
+go14/test/fixedbugs/bug010.go
+go14/test/fixedbugs/bug011.go
+go14/test/fixedbugs/bug012.go
+go14/test/fixedbugs/bug013.go
+go14/test/fixedbugs/bug014.go
+go14/test/fixedbugs/bug015.go
+go14/test/fixedbugs/bug016.go
+go14/test/fixedbugs/bug017.go
+go14/test/fixedbugs/bug020.go
+go14/test/fixedbugs/bug021.go
+go14/test/fixedbugs/bug022.go
+go14/test/fixedbugs/bug023.go
+go14/test/fixedbugs/bug024.go
+go14/test/fixedbugs/bug026.go
+go14/test/fixedbugs/bug027.go
+go14/test/fixedbugs/bug028.go
+go14/test/fixedbugs/bug030.go
+go14/test/fixedbugs/bug031.go
+go14/test/fixedbugs/bug035.go
+go14/test/fixedbugs/bug037.go
+go14/test/fixedbugs/bug039.go
+go14/test/fixedbugs/bug040.go
+go14/test/fixedbugs/bug045.go
+go14/test/fixedbugs/bug046.go
+go14/test/fixedbugs/bug047.go
+go14/test/fixedbugs/bug048.go
+go14/test/fixedbugs/bug049.go
+go14/test/fixedbugs/bug050.go
+go14/test/fixedbugs/bug051.go
+go14/test/fixedbugs/bug052.go
+go14/test/fixedbugs/bug053.go
+go14/test/fixedbugs/bug054.go
+go14/test/fixedbugs/bug055.go
+go14/test/fixedbugs/bug056.go
+go14/test/fixedbugs/bug057.go
+go14/test/fixedbugs/bug058.go
+go14/test/fixedbugs/bug059.go
+go14/test/fixedbugs/bug060.go
+go14/test/fixedbugs/bug061.go
+go14/test/fixedbugs/bug062.go
+go14/test/fixedbugs/bug063.go
+go14/test/fixedbugs/bug064.go
+go14/test/fixedbugs/bug065.go
+go14/test/fixedbugs/bug066.go
+go14/test/fixedbugs/bug067.go
+go14/test/fixedbugs/bug068.go
+go14/test/fixedbugs/bug069.go
+go14/test/fixedbugs/bug070.go
+go14/test/fixedbugs/bug071.go
+go14/test/fixedbugs/bug072.go
+go14/test/fixedbugs/bug073.go
+go14/test/fixedbugs/bug074.go
+go14/test/fixedbugs/bug075.go
+go14/test/fixedbugs/bug076.go
+go14/test/fixedbugs/bug077.go
+go14/test/fixedbugs/bug078.go
+go14/test/fixedbugs/bug080.go
+go14/test/fixedbugs/bug081.go
+go14/test/fixedbugs/bug082.go
+go14/test/fixedbugs/bug083.dir/bug0.go
+go14/test/fixedbugs/bug083.dir/bug1.go
+go14/test/fixedbugs/bug083.go
+go14/test/fixedbugs/bug084.go
+go14/test/fixedbugs/bug085.go
+go14/test/fixedbugs/bug086.go
+go14/test/fixedbugs/bug087.go
+go14/test/fixedbugs/bug088.dir/bug0.go
+go14/test/fixedbugs/bug088.dir/bug1.go
+go14/test/fixedbugs/bug088.go
+go14/test/fixedbugs/bug089.go
+go14/test/fixedbugs/bug090.go
+go14/test/fixedbugs/bug091.go
+go14/test/fixedbugs/bug092.go
+go14/test/fixedbugs/bug093.go
+go14/test/fixedbugs/bug094.go
+go14/test/fixedbugs/bug096.go
+go14/test/fixedbugs/bug097.go
+go14/test/fixedbugs/bug098.go
+go14/test/fixedbugs/bug099.go
+go14/test/fixedbugs/bug101.go
+go14/test/fixedbugs/bug102.go
+go14/test/fixedbugs/bug103.go
+go14/test/fixedbugs/bug104.go
+go14/test/fixedbugs/bug106.dir/bug0.go
+go14/test/fixedbugs/bug106.dir/bug1.go
+go14/test/fixedbugs/bug106.go
+go14/test/fixedbugs/bug107.go
+go14/test/fixedbugs/bug108.go
+go14/test/fixedbugs/bug109.go
+go14/test/fixedbugs/bug110.go
+go14/test/fixedbugs/bug111.go
+go14/test/fixedbugs/bug112.go
+go14/test/fixedbugs/bug113.go
+go14/test/fixedbugs/bug114.go
+go14/test/fixedbugs/bug115.go
+go14/test/fixedbugs/bug116.go
+go14/test/fixedbugs/bug117.go
+go14/test/fixedbugs/bug118.go
+go14/test/fixedbugs/bug119.go
+go14/test/fixedbugs/bug120.go
+go14/test/fixedbugs/bug121.go
+go14/test/fixedbugs/bug122.go
+go14/test/fixedbugs/bug123.go
+go14/test/fixedbugs/bug126.go
+go14/test/fixedbugs/bug127.go
+go14/test/fixedbugs/bug128.go
+go14/test/fixedbugs/bug129.go
+go14/test/fixedbugs/bug130.go
+go14/test/fixedbugs/bug131.go
+go14/test/fixedbugs/bug132.go
+go14/test/fixedbugs/bug133.dir/bug0.go
+go14/test/fixedbugs/bug133.dir/bug1.go
+go14/test/fixedbugs/bug133.dir/bug2.go
+go14/test/fixedbugs/bug133.go
+go14/test/fixedbugs/bug135.go
+go14/test/fixedbugs/bug136.go
+go14/test/fixedbugs/bug137.go
+go14/test/fixedbugs/bug139.go
+go14/test/fixedbugs/bug140.go
+go14/test/fixedbugs/bug141.go
+go14/test/fixedbugs/bug142.go
+go14/test/fixedbugs/bug143.go
+go14/test/fixedbugs/bug144.go
+go14/test/fixedbugs/bug145.go
+go14/test/fixedbugs/bug146.go
+go14/test/fixedbugs/bug147.go
+go14/test/fixedbugs/bug148.go
+go14/test/fixedbugs/bug149.go
+go14/test/fixedbugs/bug150.go
+go14/test/fixedbugs/bug151.go
+go14/test/fixedbugs/bug1515.go
+go14/test/fixedbugs/bug152.go
+go14/test/fixedbugs/bug154.go
+go14/test/fixedbugs/bug155.go
+go14/test/fixedbugs/bug156.go
+go14/test/fixedbugs/bug157.go
+go14/test/fixedbugs/bug158.go
+go14/test/fixedbugs/bug159.go
+go14/test/fixedbugs/bug160.dir/x.go
+go14/test/fixedbugs/bug160.dir/y.go
+go14/test/fixedbugs/bug160.go
+go14/test/fixedbugs/bug161.go
+go14/test/fixedbugs/bug163.go
+go14/test/fixedbugs/bug164.go
+go14/test/fixedbugs/bug165.go
+go14/test/fixedbugs/bug167.go
+go14/test/fixedbugs/bug168.go
+go14/test/fixedbugs/bug169.go
+go14/test/fixedbugs/bug170.go
+go14/test/fixedbugs/bug171.go
+go14/test/fixedbugs/bug172.go
+go14/test/fixedbugs/bug173.go
+go14/test/fixedbugs/bug174.go
+go14/test/fixedbugs/bug175.go
+go14/test/fixedbugs/bug176.go
+go14/test/fixedbugs/bug177.go
+go14/test/fixedbugs/bug178.go
+go14/test/fixedbugs/bug179.go
+go14/test/fixedbugs/bug180.go
+go14/test/fixedbugs/bug181.go
+go14/test/fixedbugs/bug182.go
+go14/test/fixedbugs/bug183.go
+go14/test/fixedbugs/bug184.go
+go14/test/fixedbugs/bug185.go
+go14/test/fixedbugs/bug186.go
+go14/test/fixedbugs/bug187.go
+go14/test/fixedbugs/bug188.go
+go14/test/fixedbugs/bug189.go
+go14/test/fixedbugs/bug190.go
+go14/test/fixedbugs/bug191.dir/a.go
+go14/test/fixedbugs/bug191.dir/b.go
+go14/test/fixedbugs/bug191.dir/main.go
+go14/test/fixedbugs/bug191.go
+go14/test/fixedbugs/bug192.go
+go14/test/fixedbugs/bug193.go
+go14/test/fixedbugs/bug194.go
+go14/test/fixedbugs/bug195.go
+go14/test/fixedbugs/bug196.go
+go14/test/fixedbugs/bug197.go
+go14/test/fixedbugs/bug198.go
+go14/test/fixedbugs/bug199.go
+go14/test/fixedbugs/bug200.go
+go14/test/fixedbugs/bug201.go
+go14/test/fixedbugs/bug202.go
+go14/test/fixedbugs/bug203.go
+go14/test/fixedbugs/bug204.go
+go14/test/fixedbugs/bug205.go
+go14/test/fixedbugs/bug206.go
+go14/test/fixedbugs/bug206.out
+go14/test/fixedbugs/bug207.go
+go14/test/fixedbugs/bug208.go
+go14/test/fixedbugs/bug209.go
+go14/test/fixedbugs/bug211.go
+go14/test/fixedbugs/bug212.go
+go14/test/fixedbugs/bug213.go
+go14/test/fixedbugs/bug214.go
+go14/test/fixedbugs/bug215.go
+go14/test/fixedbugs/bug216.go
+go14/test/fixedbugs/bug217.go
+go14/test/fixedbugs/bug218.go
+go14/test/fixedbugs/bug219.go
+go14/test/fixedbugs/bug221.go
+go14/test/fixedbugs/bug222.dir/chanbug.go
+go14/test/fixedbugs/bug222.dir/chanbug2.go
+go14/test/fixedbugs/bug222.go
+go14/test/fixedbugs/bug223.go
+go14/test/fixedbugs/bug224.go
+go14/test/fixedbugs/bug225.go
+go14/test/fixedbugs/bug227.go
+go14/test/fixedbugs/bug228.go
+go14/test/fixedbugs/bug229.go
+go14/test/fixedbugs/bug230.go
+go14/test/fixedbugs/bug231.go
+go14/test/fixedbugs/bug232.go
+go14/test/fixedbugs/bug233.go
+go14/test/fixedbugs/bug234.go
+go14/test/fixedbugs/bug235.go
+go14/test/fixedbugs/bug236.go
+go14/test/fixedbugs/bug237.go
+go14/test/fixedbugs/bug238.go
+go14/test/fixedbugs/bug239.go
+go14/test/fixedbugs/bug240.go
+go14/test/fixedbugs/bug241.go
+go14/test/fixedbugs/bug242.go
+go14/test/fixedbugs/bug243.go
+go14/test/fixedbugs/bug244.go
+go14/test/fixedbugs/bug245.go
+go14/test/fixedbugs/bug246.go
+go14/test/fixedbugs/bug247.go
+go14/test/fixedbugs/bug248.dir/bug0.go
+go14/test/fixedbugs/bug248.dir/bug1.go
+go14/test/fixedbugs/bug248.dir/bug2.go
+go14/test/fixedbugs/bug248.dir/bug3.go
+go14/test/fixedbugs/bug248.go
+go14/test/fixedbugs/bug249.go
+go14/test/fixedbugs/bug250.go
+go14/test/fixedbugs/bug251.go
+go14/test/fixedbugs/bug252.go
+go14/test/fixedbugs/bug253.go
+go14/test/fixedbugs/bug254.go
+go14/test/fixedbugs/bug255.go
+go14/test/fixedbugs/bug256.go
+go14/test/fixedbugs/bug257.go
+go14/test/fixedbugs/bug258.go
+go14/test/fixedbugs/bug259.go
+go14/test/fixedbugs/bug260.go
+go14/test/fixedbugs/bug261.go
+go14/test/fixedbugs/bug262.go
+go14/test/fixedbugs/bug263.go
+go14/test/fixedbugs/bug264.go
+go14/test/fixedbugs/bug265.go
+go14/test/fixedbugs/bug266.go
+go14/test/fixedbugs/bug267.go
+go14/test/fixedbugs/bug269.go
+go14/test/fixedbugs/bug271.go
+go14/test/fixedbugs/bug272.go
+go14/test/fixedbugs/bug273.go
+go14/test/fixedbugs/bug274.go
+go14/test/fixedbugs/bug275.go
+go14/test/fixedbugs/bug276.go
+go14/test/fixedbugs/bug277.go
+go14/test/fixedbugs/bug278.go
+go14/test/fixedbugs/bug279.go
+go14/test/fixedbugs/bug280.go
+go14/test/fixedbugs/bug281.go
+go14/test/fixedbugs/bug282.dir/p1.go
+go14/test/fixedbugs/bug282.dir/p2.go
+go14/test/fixedbugs/bug282.go
+go14/test/fixedbugs/bug283.go
+go14/test/fixedbugs/bug284.go
+go14/test/fixedbugs/bug285.go
+go14/test/fixedbugs/bug286.go
+go14/test/fixedbugs/bug287.go
+go14/test/fixedbugs/bug288.go
+go14/test/fixedbugs/bug289.go
+go14/test/fixedbugs/bug290.go
+go14/test/fixedbugs/bug291.go
+go14/test/fixedbugs/bug292.go
+go14/test/fixedbugs/bug293.go
+go14/test/fixedbugs/bug294.go
+go14/test/fixedbugs/bug295.go
+go14/test/fixedbugs/bug296.go
+go14/test/fixedbugs/bug297.go
+go14/test/fixedbugs/bug298.go
+go14/test/fixedbugs/bug299.go
+go14/test/fixedbugs/bug300.go
+go14/test/fixedbugs/bug301.go
+go14/test/fixedbugs/bug302.dir/main.go
+go14/test/fixedbugs/bug302.dir/p.go
+go14/test/fixedbugs/bug302.go
+go14/test/fixedbugs/bug303.go
+go14/test/fixedbugs/bug304.go
+go14/test/fixedbugs/bug305.go
+go14/test/fixedbugs/bug306.dir/p1.go
+go14/test/fixedbugs/bug306.dir/p2.go
+go14/test/fixedbugs/bug306.go
+go14/test/fixedbugs/bug307.go
+go14/test/fixedbugs/bug308.go
+go14/test/fixedbugs/bug309.go
+go14/test/fixedbugs/bug311.go
+go14/test/fixedbugs/bug312.go
+go14/test/fixedbugs/bug313.dir/a.go
+go14/test/fixedbugs/bug313.dir/b.go
+go14/test/fixedbugs/bug313.go
+go14/test/fixedbugs/bug314.go
+go14/test/fixedbugs/bug315.go
+go14/test/fixedbugs/bug316.go
+go14/test/fixedbugs/bug317.go
+go14/test/fixedbugs/bug318.go
+go14/test/fixedbugs/bug319.go
+go14/test/fixedbugs/bug320.go
+go14/test/fixedbugs/bug321.go
+go14/test/fixedbugs/bug322.dir/lib.go
+go14/test/fixedbugs/bug322.dir/main.go
+go14/test/fixedbugs/bug322.go
+go14/test/fixedbugs/bug323.go
+go14/test/fixedbugs/bug324.dir/p.go
+go14/test/fixedbugs/bug324.dir/prog.go
+go14/test/fixedbugs/bug324.go
+go14/test/fixedbugs/bug325.go
+go14/test/fixedbugs/bug326.go
+go14/test/fixedbugs/bug327.go
+go14/test/fixedbugs/bug328.go
+go14/test/fixedbugs/bug328.out
+go14/test/fixedbugs/bug329.go
+go14/test/fixedbugs/bug330.go
+go14/test/fixedbugs/bug331.go
+go14/test/fixedbugs/bug332.go
+go14/test/fixedbugs/bug333.go
+go14/test/fixedbugs/bug334.go
+go14/test/fixedbugs/bug335.dir/a.go
+go14/test/fixedbugs/bug335.dir/b.go
+go14/test/fixedbugs/bug335.go
+go14/test/fixedbugs/bug336.go
+go14/test/fixedbugs/bug337.go
+go14/test/fixedbugs/bug338.go
+go14/test/fixedbugs/bug339.go
+go14/test/fixedbugs/bug340.go
+go14/test/fixedbugs/bug341.go
+go14/test/fixedbugs/bug342.go
+go14/test/fixedbugs/bug343.go
+go14/test/fixedbugs/bug344.go
+go14/test/fixedbugs/bug345.dir/io.go
+go14/test/fixedbugs/bug345.dir/main.go
+go14/test/fixedbugs/bug345.go
+go14/test/fixedbugs/bug346.go
+go14/test/fixedbugs/bug347.go
+go14/test/fixedbugs/bug348.go
+go14/test/fixedbugs/bug349.go
+go14/test/fixedbugs/bug350.go
+go14/test/fixedbugs/bug351.go
+go14/test/fixedbugs/bug352.go
+go14/test/fixedbugs/bug353.go
+go14/test/fixedbugs/bug354.go
+go14/test/fixedbugs/bug355.go
+go14/test/fixedbugs/bug356.go
+go14/test/fixedbugs/bug357.go
+go14/test/fixedbugs/bug358.go
+go14/test/fixedbugs/bug361.go
+go14/test/fixedbugs/bug362.go
+go14/test/fixedbugs/bug363.go
+go14/test/fixedbugs/bug364.go
+go14/test/fixedbugs/bug365.go
+go14/test/fixedbugs/bug366.go
+go14/test/fixedbugs/bug367.dir/p.go
+go14/test/fixedbugs/bug367.dir/prog.go
+go14/test/fixedbugs/bug367.go
+go14/test/fixedbugs/bug368.go
+go14/test/fixedbugs/bug369.dir/pkg.go
+go14/test/fixedbugs/bug369.go
+go14/test/fixedbugs/bug370.go
+go14/test/fixedbugs/bug371.go
+go14/test/fixedbugs/bug372.go
+go14/test/fixedbugs/bug373.go
+go14/test/fixedbugs/bug374.go
+go14/test/fixedbugs/bug375.go
+go14/test/fixedbugs/bug376.go
+go14/test/fixedbugs/bug377.dir/one.go
+go14/test/fixedbugs/bug377.dir/two.go
+go14/test/fixedbugs/bug377.go
+go14/test/fixedbugs/bug378.go
+go14/test/fixedbugs/bug379.go
+go14/test/fixedbugs/bug380.go
+go14/test/fixedbugs/bug381.go
+go14/test/fixedbugs/bug382.dir/pkg.go
+go14/test/fixedbugs/bug382.dir/prog.go
+go14/test/fixedbugs/bug382.go
+go14/test/fixedbugs/bug383.go
+go14/test/fixedbugs/bug384.go
+go14/test/fixedbugs/bug385_32.go
+go14/test/fixedbugs/bug385_64.go
+go14/test/fixedbugs/bug386.go
+go14/test/fixedbugs/bug387.go
+go14/test/fixedbugs/bug388.go
+go14/test/fixedbugs/bug389.go
+go14/test/fixedbugs/bug390.go
+go14/test/fixedbugs/bug391.go
+go14/test/fixedbugs/bug392.dir/one.go
+go14/test/fixedbugs/bug392.dir/pkg2.go
+go14/test/fixedbugs/bug392.dir/pkg3.go
+go14/test/fixedbugs/bug392.go
+go14/test/fixedbugs/bug393.go
+go14/test/fixedbugs/bug394.go
+go14/test/fixedbugs/bug396.dir/one.go
+go14/test/fixedbugs/bug396.dir/two.go
+go14/test/fixedbugs/bug396.go
+go14/test/fixedbugs/bug397.go
+go14/test/fixedbugs/bug398.go
+go14/test/fixedbugs/bug399.go
+go14/test/fixedbugs/bug401.go
+go14/test/fixedbugs/bug402.go
+go14/test/fixedbugs/bug403.go
+go14/test/fixedbugs/bug404.dir/one.go
+go14/test/fixedbugs/bug404.dir/two.go
+go14/test/fixedbugs/bug404.go
+go14/test/fixedbugs/bug405.go
+go14/test/fixedbugs/bug406.go
+go14/test/fixedbugs/bug407.dir/one.go
+go14/test/fixedbugs/bug407.dir/two.go
+go14/test/fixedbugs/bug407.go
+go14/test/fixedbugs/bug409.go
+go14/test/fixedbugs/bug409.out
+go14/test/fixedbugs/bug410.go
+go14/test/fixedbugs/bug411.go
+go14/test/fixedbugs/bug412.go
+go14/test/fixedbugs/bug413.go
+go14/test/fixedbugs/bug414.dir/p1.go
+go14/test/fixedbugs/bug414.dir/prog.go
+go14/test/fixedbugs/bug414.go
+go14/test/fixedbugs/bug415.dir/p.go
+go14/test/fixedbugs/bug415.dir/prog.go
+go14/test/fixedbugs/bug415.go
+go14/test/fixedbugs/bug416.go
+go14/test/fixedbugs/bug417.go
+go14/test/fixedbugs/bug418.go
+go14/test/fixedbugs/bug419.go
+go14/test/fixedbugs/bug420.go
+go14/test/fixedbugs/bug421.go
+go14/test/fixedbugs/bug422.go
+go14/test/fixedbugs/bug423.go
+go14/test/fixedbugs/bug424.dir/lib.go
+go14/test/fixedbugs/bug424.dir/main.go
+go14/test/fixedbugs/bug424.go
+go14/test/fixedbugs/bug425.go
+go14/test/fixedbugs/bug426.go
+go14/test/fixedbugs/bug427.go
+go14/test/fixedbugs/bug428.go
+go14/test/fixedbugs/bug429.go
+go14/test/fixedbugs/bug430.go
+go14/test/fixedbugs/bug431.go
+go14/test/fixedbugs/bug432.go
+go14/test/fixedbugs/bug433.go
+go14/test/fixedbugs/bug434.go
+go14/test/fixedbugs/bug435.go
+go14/test/fixedbugs/bug436.go
+go14/test/fixedbugs/bug437.dir/one.go
+go14/test/fixedbugs/bug437.dir/two.go
+go14/test/fixedbugs/bug437.dir/x.go
+go14/test/fixedbugs/bug437.go
+go14/test/fixedbugs/bug438.go
+go14/test/fixedbugs/bug439.go
+go14/test/fixedbugs/bug440_32.go
+go14/test/fixedbugs/bug440_64.go
+go14/test/fixedbugs/bug441.go
+go14/test/fixedbugs/bug442.go
+go14/test/fixedbugs/bug443.go
+go14/test/fixedbugs/bug444.go
+go14/test/fixedbugs/bug445.go
+go14/test/fixedbugs/bug446.go
+go14/test/fixedbugs/bug447.go
+go14/test/fixedbugs/bug448.dir/pkg1.go
+go14/test/fixedbugs/bug448.dir/pkg2.go
+go14/test/fixedbugs/bug448.go
+go14/test/fixedbugs/bug449.go
+go14/test/fixedbugs/bug450.go
+go14/test/fixedbugs/bug451.go
+go14/test/fixedbugs/bug452.go
+go14/test/fixedbugs/bug453.go
+go14/test/fixedbugs/bug454.go
+go14/test/fixedbugs/bug455.go
+go14/test/fixedbugs/bug456.go
+go14/test/fixedbugs/bug457.go
+go14/test/fixedbugs/bug458.go
+go14/test/fixedbugs/bug459.go
+go14/test/fixedbugs/bug460.dir/a.go
+go14/test/fixedbugs/bug460.dir/b.go
+go14/test/fixedbugs/bug460.go
+go14/test/fixedbugs/bug461.go
+go14/test/fixedbugs/bug462.go
+go14/test/fixedbugs/bug463.go
+go14/test/fixedbugs/bug464.go
+go14/test/fixedbugs/bug465.dir/a.go
+go14/test/fixedbugs/bug465.dir/b.go
+go14/test/fixedbugs/bug465.go
+go14/test/fixedbugs/bug466.dir/a.go
+go14/test/fixedbugs/bug466.dir/b.go
+go14/test/fixedbugs/bug466.go
+go14/test/fixedbugs/bug467.dir/p1.go
+go14/test/fixedbugs/bug467.dir/p2.go
+go14/test/fixedbugs/bug467.dir/p3.go
+go14/test/fixedbugs/bug467.go
+go14/test/fixedbugs/bug468.dir/p1.go
+go14/test/fixedbugs/bug468.dir/p2.go
+go14/test/fixedbugs/bug468.go
+go14/test/fixedbugs/bug470.go
+go14/test/fixedbugs/bug471.go
+go14/test/fixedbugs/bug472.dir/p1.go
+go14/test/fixedbugs/bug472.dir/p2.go
+go14/test/fixedbugs/bug472.dir/z.go
+go14/test/fixedbugs/bug472.go
+go14/test/fixedbugs/bug473.go
+go14/test/fixedbugs/bug474.go
+go14/test/fixedbugs/bug475.go
+go14/test/fixedbugs/bug476.go
+go14/test/fixedbugs/bug477.go
+go14/test/fixedbugs/bug478.dir/a.go
+go14/test/fixedbugs/bug478.dir/b.go
+go14/test/fixedbugs/bug478.go
+go14/test/fixedbugs/bug479.dir/a.go
+go14/test/fixedbugs/bug479.dir/b.go
+go14/test/fixedbugs/bug479.go
+go14/test/fixedbugs/bug480.dir/a.go
+go14/test/fixedbugs/bug480.dir/b.go
+go14/test/fixedbugs/bug480.go
+go14/test/fixedbugs/bug481.go
+go14/test/fixedbugs/bug482.go
+go14/test/fixedbugs/bug483.go
+go14/test/fixedbugs/bug484.go
+go14/test/fixedbugs/bug485.go
+go14/test/fixedbugs/bug486.go
+go14/test/fixedbugs/bug487.go
+go14/test/fixedbugs/bug488.dir/a.go
+go14/test/fixedbugs/bug488.dir/b.go
+go14/test/fixedbugs/bug488.go
+go14/test/fixedbugs/bug489.go
+go14/test/fixedbugs/bug490.go
+go14/test/fixedbugs/bug491.go
+go14/test/fixedbugs/issue1304.go
+go14/test/fixedbugs/issue2615.go
+go14/test/fixedbugs/issue3552.dir/one.go
+go14/test/fixedbugs/issue3552.dir/two.go
+go14/test/fixedbugs/issue3552.go
+go14/test/fixedbugs/issue3705.go
+go14/test/fixedbugs/issue3783.go
+go14/test/fixedbugs/issue3924.go
+go14/test/fixedbugs/issue3925.go
+go14/test/fixedbugs/issue4066.go
+go14/test/fixedbugs/issue4085a.go
+go14/test/fixedbugs/issue4085b.go
+go14/test/fixedbugs/issue4097.go
+go14/test/fixedbugs/issue4099.go
+go14/test/fixedbugs/issue4162.go
+go14/test/fixedbugs/issue4167.go
+go14/test/fixedbugs/issue4232.go
+go14/test/fixedbugs/issue4251.go
+go14/test/fixedbugs/issue4252.dir/a.go
+go14/test/fixedbugs/issue4252.dir/main.go
+go14/test/fixedbugs/issue4252.go
+go14/test/fixedbugs/issue4264.go
+go14/test/fixedbugs/issue4283.go
+go14/test/fixedbugs/issue4313.go
+go14/test/fixedbugs/issue4316.go
+go14/test/fixedbugs/issue4323.go
+go14/test/fixedbugs/issue4326.dir/p1.go
+go14/test/fixedbugs/issue4326.dir/p2.go
+go14/test/fixedbugs/issue4326.dir/q1.go
+go14/test/fixedbugs/issue4326.dir/q2.go
+go14/test/fixedbugs/issue4326.dir/z.go
+go14/test/fixedbugs/issue4326.go
+go14/test/fixedbugs/issue4348.go
+go14/test/fixedbugs/issue4353.go
+go14/test/fixedbugs/issue4359.go
+go14/test/fixedbugs/issue4370.dir/p1.go
+go14/test/fixedbugs/issue4370.dir/p2.go
+go14/test/fixedbugs/issue4370.dir/p3.go
+go14/test/fixedbugs/issue4370.go
+go14/test/fixedbugs/issue4388.go
+go14/test/fixedbugs/issue4396a.go
+go14/test/fixedbugs/issue4396b.go
+go14/test/fixedbugs/issue4399.go
+go14/test/fixedbugs/issue4405.go
+go14/test/fixedbugs/issue4429.go
+go14/test/fixedbugs/issue4448.go
+go14/test/fixedbugs/issue4452.go
+go14/test/fixedbugs/issue4458.go
+go14/test/fixedbugs/issue4463.go
+go14/test/fixedbugs/issue4468.go
+go14/test/fixedbugs/issue4470.go
+go14/test/fixedbugs/issue4495.go
+go14/test/fixedbugs/issue4510.dir/f1.go
+go14/test/fixedbugs/issue4510.dir/f2.go
+go14/test/fixedbugs/issue4510.go
+go14/test/fixedbugs/issue4517a.go
+go14/test/fixedbugs/issue4517b.go
+go14/test/fixedbugs/issue4517c.go
+go14/test/fixedbugs/issue4517d.go
+go14/test/fixedbugs/issue4518.go
+go14/test/fixedbugs/issue4529.go
+go14/test/fixedbugs/issue4545.go
+go14/test/fixedbugs/issue4562.go
+go14/test/fixedbugs/issue4585.go
+go14/test/fixedbugs/issue4590.dir/pkg1.go
+go14/test/fixedbugs/issue4590.dir/pkg2.go
+go14/test/fixedbugs/issue4590.dir/prog.go
+go14/test/fixedbugs/issue4590.go
+go14/test/fixedbugs/issue4610.go
+go14/test/fixedbugs/issue4614.go
+go14/test/fixedbugs/issue4618.go
+go14/test/fixedbugs/issue4620.go
+go14/test/fixedbugs/issue4654.go
+go14/test/fixedbugs/issue4663.go
+go14/test/fixedbugs/issue4667.go
+go14/test/fixedbugs/issue4734.go
+go14/test/fixedbugs/issue4748.go
+go14/test/fixedbugs/issue4752.go
+go14/test/fixedbugs/issue4776.go
+go14/test/fixedbugs/issue4785.go
+go14/test/fixedbugs/issue4813.go
+go14/test/fixedbugs/issue4847.go
+go14/test/fixedbugs/issue4879.dir/a.go
+go14/test/fixedbugs/issue4879.dir/b.go
+go14/test/fixedbugs/issue4879.go
+go14/test/fixedbugs/issue4909a.go
+go14/test/fixedbugs/issue4909b.go
+go14/test/fixedbugs/issue4932.dir/foo.go
+go14/test/fixedbugs/issue4932.dir/state.go
+go14/test/fixedbugs/issue4932.dir/state2.go
+go14/test/fixedbugs/issue4932.go
+go14/test/fixedbugs/issue4964.dir/a.go
+go14/test/fixedbugs/issue4964.dir/b.go
+go14/test/fixedbugs/issue4964.go
+go14/test/fixedbugs/issue5002.go
+go14/test/fixedbugs/issue5056.go
+go14/test/fixedbugs/issue5089.go
+go14/test/fixedbugs/issue5105.dir/a.go
+go14/test/fixedbugs/issue5105.dir/b.go
+go14/test/fixedbugs/issue5105.go
+go14/test/fixedbugs/issue5125.dir/bug.go
+go14/test/fixedbugs/issue5125.dir/main.go
+go14/test/fixedbugs/issue5125.go
+go14/test/fixedbugs/issue5162.go
+go14/test/fixedbugs/issue5172.go
+go14/test/fixedbugs/issue5231.go
+go14/test/fixedbugs/issue5244.go
+go14/test/fixedbugs/issue5259.dir/bug.go
+go14/test/fixedbugs/issue5259.dir/main.go
+go14/test/fixedbugs/issue5259.go
+go14/test/fixedbugs/issue5260.dir/a.go
+go14/test/fixedbugs/issue5260.dir/b.go
+go14/test/fixedbugs/issue5260.go
+go14/test/fixedbugs/issue5291.dir/pkg1.go
+go14/test/fixedbugs/issue5291.dir/prog.go
+go14/test/fixedbugs/issue5291.go
+go14/test/fixedbugs/issue5358.go
+go14/test/fixedbugs/issue5470.dir/a.go
+go14/test/fixedbugs/issue5470.dir/b.go
+go14/test/fixedbugs/issue5470.go
+go14/test/fixedbugs/issue5493.go
+go14/test/fixedbugs/issue5515.go
+go14/test/fixedbugs/issue5581.go
+go14/test/fixedbugs/issue5607.go
+go14/test/fixedbugs/issue5609.go
+go14/test/fixedbugs/issue5614.dir/rethinkgo.go
+go14/test/fixedbugs/issue5614.dir/x.go
+go14/test/fixedbugs/issue5614.dir/y.go
+go14/test/fixedbugs/issue5614.go
+go14/test/fixedbugs/issue5698.go
+go14/test/fixedbugs/issue5704.go
+go14/test/fixedbugs/issue5753.go
+go14/test/fixedbugs/issue5755.dir/a.go
+go14/test/fixedbugs/issue5755.dir/main.go
+go14/test/fixedbugs/issue5755.go
+go14/test/fixedbugs/issue5793.go
+go14/test/fixedbugs/issue5809.go
+go14/test/fixedbugs/issue5820.go
+go14/test/fixedbugs/issue5841.go
+go14/test/fixedbugs/issue5856.go
+go14/test/fixedbugs/issue5910.dir/a.go
+go14/test/fixedbugs/issue5910.dir/main.go
+go14/test/fixedbugs/issue5910.go
+go14/test/fixedbugs/issue5957.dir/a.go
+go14/test/fixedbugs/issue5957.dir/b.go
+go14/test/fixedbugs/issue5957.dir/c.go
+go14/test/fixedbugs/issue5957.go
+go14/test/fixedbugs/issue5963.go
+go14/test/fixedbugs/issue6004.go
+go14/test/fixedbugs/issue6036.go
+go14/test/fixedbugs/issue6055.go
+go14/test/fixedbugs/issue6131.go
+go14/test/fixedbugs/issue6140.go
+go14/test/fixedbugs/issue6247.go
+go14/test/fixedbugs/issue6269.go
+go14/test/fixedbugs/issue6295.dir/p0.go
+go14/test/fixedbugs/issue6295.dir/p1.go
+go14/test/fixedbugs/issue6295.dir/p2.go
+go14/test/fixedbugs/issue6295.go
+go14/test/fixedbugs/issue6298.go
+go14/test/fixedbugs/issue6399.go
+go14/test/fixedbugs/issue6402.go
+go14/test/fixedbugs/issue6403.go
+go14/test/fixedbugs/issue6405.go
+go14/test/fixedbugs/issue6406.go
+go14/test/fixedbugs/issue6500.go
+go14/test/fixedbugs/issue6513.dir/a.go
+go14/test/fixedbugs/issue6513.dir/b.go
+go14/test/fixedbugs/issue6513.dir/main.go
+go14/test/fixedbugs/issue6513.go
+go14/test/fixedbugs/issue6572.go
+go14/test/fixedbugs/issue6703a.go
+go14/test/fixedbugs/issue6703b.go
+go14/test/fixedbugs/issue6703c.go
+go14/test/fixedbugs/issue6703d.go
+go14/test/fixedbugs/issue6703e.go
+go14/test/fixedbugs/issue6703f.go
+go14/test/fixedbugs/issue6703g.go
+go14/test/fixedbugs/issue6703h.go
+go14/test/fixedbugs/issue6703i.go
+go14/test/fixedbugs/issue6703j.go
+go14/test/fixedbugs/issue6703k.go
+go14/test/fixedbugs/issue6703l.go
+go14/test/fixedbugs/issue6703m.go
+go14/test/fixedbugs/issue6703n.go
+go14/test/fixedbugs/issue6703o.go
+go14/test/fixedbugs/issue6703p.go
+go14/test/fixedbugs/issue6703q.go
+go14/test/fixedbugs/issue6703r.go
+go14/test/fixedbugs/issue6703s.go
+go14/test/fixedbugs/issue6703t.go
+go14/test/fixedbugs/issue6703u.go
+go14/test/fixedbugs/issue6703v.go
+go14/test/fixedbugs/issue6703w.go
+go14/test/fixedbugs/issue6703x.go
+go14/test/fixedbugs/issue6703y.go
+go14/test/fixedbugs/issue6703z.go
+go14/test/fixedbugs/issue6789.dir/a.go
+go14/test/fixedbugs/issue6789.dir/b.go
+go14/test/fixedbugs/issue6789.go
+go14/test/fixedbugs/issue6847.go
+go14/test/fixedbugs/issue6889.go
+go14/test/fixedbugs/issue6899.go
+go14/test/fixedbugs/issue6899.out
+go14/test/fixedbugs/issue6902.go
+go14/test/fixedbugs/issue6964.go
+go14/test/fixedbugs/issue7023.dir/a.go
+go14/test/fixedbugs/issue7023.dir/b.go
+go14/test/fixedbugs/issue7023.go
+go14/test/fixedbugs/issue7044.go
+go14/test/fixedbugs/issue7050.go
+go14/test/fixedbugs/issue7083.go
+go14/test/fixedbugs/issue7129.go
+go14/test/fixedbugs/issue7150.go
+go14/test/fixedbugs/issue7153.go
+go14/test/fixedbugs/issue7214.go
+go14/test/fixedbugs/issue7223.go
+go14/test/fixedbugs/issue7272.go
+go14/test/fixedbugs/issue7310.go
+go14/test/fixedbugs/issue7316.go
+go14/test/fixedbugs/issue7346.go
+go14/test/fixedbugs/issue7366.go
+go14/test/fixedbugs/issue7405.go
+go14/test/fixedbugs/issue7419.go
+go14/test/fixedbugs/issue7525.go
+go14/test/fixedbugs/issue7538a.go
+go14/test/fixedbugs/issue7538b.go
+go14/test/fixedbugs/issue7547.go
+go14/test/fixedbugs/issue7550.go
+go14/test/fixedbugs/issue7590.go
+go14/test/fixedbugs/issue7648.dir/a.go
+go14/test/fixedbugs/issue7648.dir/b.go
+go14/test/fixedbugs/issue7648.go
+go14/test/fixedbugs/issue7675.go
+go14/test/fixedbugs/issue7690.go
+go14/test/fixedbugs/issue7742.go
+go14/test/fixedbugs/issue7760.go
+go14/test/fixedbugs/issue7794.go
+go14/test/fixedbugs/issue7863.go
+go14/test/fixedbugs/issue7867.go
+go14/test/fixedbugs/issue7884.go
+go14/test/fixedbugs/issue7944.go
+go14/test/fixedbugs/issue7995.go
+go14/test/fixedbugs/issue7995b.dir/x1.go
+go14/test/fixedbugs/issue7995b.dir/x2.go
+go14/test/fixedbugs/issue7995b.go
+go14/test/fixedbugs/issue7996.go
+go14/test/fixedbugs/issue7997.go
+go14/test/fixedbugs/issue7998.go
+go14/test/fixedbugs/issue8004.go
+go14/test/fixedbugs/issue8011.go
+go14/test/fixedbugs/issue8017.go
+go14/test/fixedbugs/issue8028.go
+go14/test/fixedbugs/issue8036.go
+go14/test/fixedbugs/issue8039.go
+go14/test/fixedbugs/issue8047.go
+go14/test/fixedbugs/issue8047b.go
+go14/test/fixedbugs/issue8048.go
+go14/test/fixedbugs/issue8060.dir/a.go
+go14/test/fixedbugs/issue8060.dir/b.go
+go14/test/fixedbugs/issue8060.go
+go14/test/fixedbugs/issue8073.go
+go14/test/fixedbugs/issue8074.go
+go14/test/fixedbugs/issue8076.go
+go14/test/fixedbugs/issue8079.go
+go14/test/fixedbugs/issue8132.go
+go14/test/fixedbugs/issue8139.go
+go14/test/fixedbugs/issue8155.go
+go14/test/fixedbugs/issue8158.go
+go14/test/fixedbugs/issue8280.dir/a.go
+go14/test/fixedbugs/issue8280.dir/b.go
+go14/test/fixedbugs/issue8280.go
+go14/test/fixedbugs/issue8311.go
+go14/test/fixedbugs/issue8325.go
+go14/test/fixedbugs/issue8336.go
+go14/test/fixedbugs/issue8347.go
+go14/test/fixedbugs/issue8475.go
+go14/test/fixedbugs/issue8507.go
+go14/test/fixedbugs/issue8612.go
+go14/test/fixedbugs/issue8761.go
+go14/test/fixedbugs/issue887.go
+go14/test/fixedbugs/issue8947.go
+go14/test/fixedbugs/issue8961.go
+go14/test/fixedbugs/issue9006.go
+go14/test/fixedbugs/issue9110.go
+go14/test/fixedbugs/issue9321.go
+go14/test/fixedbugs/issue9432.go
+go14/test/fixedbugs/issue9537.dir/a.go
+go14/test/fixedbugs/issue9537.dir/b.go
+go14/test/fixedbugs/issue9537.go
+go14/test/fixedbugs/issue9604.go
+go14/test/fixedbugs/issue9634.go
+go14/test/float_lit.go
+go14/test/float_lit2.go
+go14/test/float_lit3.go
+go14/test/floatcmp.go
+go14/test/for.go
+go14/test/func.go
+go14/test/func1.go
+go14/test/func2.go
+go14/test/func3.go
+go14/test/func4.go
+go14/test/func5.go
+go14/test/func6.go
+go14/test/func7.go
+go14/test/func8.go
+go14/test/funcdup.go
+go14/test/funcdup2.go
+go14/test/gc.go
+go14/test/gc1.go
+go14/test/gc2.go
+go14/test/gcstring.go
+go14/test/golden.out
+go14/test/goprint.go
+go14/test/goprint.out
+go14/test/goto.go
+go14/test/helloworld.go
+go14/test/helloworld.out
+go14/test/if.go
+go14/test/import.go
+go14/test/import1.go
+go14/test/import2.dir/import2.go
+go14/test/import2.dir/import3.go
+go14/test/import2.go
+go14/test/import4.dir/empty.go
+go14/test/import4.dir/import4.go
+go14/test/import4.go
+go14/test/import5.go
+go14/test/index.go
+go14/test/index0.go
+go14/test/index1.go
+go14/test/index2.go
+go14/test/indirect.go
+go14/test/indirect1.go
+go14/test/init.go
+go14/test/init1.go
+go14/test/initcomma.go
+go14/test/initialize.go
+go14/test/initializerr.go
+go14/test/int_lit.go
+go14/test/intcvt.go
+go14/test/interface/bigdata.go
+go14/test/interface/convert.go
+go14/test/interface/convert1.go
+go14/test/interface/convert2.go
+go14/test/interface/embed.go
+go14/test/interface/embed1.dir/embed0.go
+go14/test/interface/embed1.dir/embed1.go
+go14/test/interface/embed1.go
+go14/test/interface/embed2.go
+go14/test/interface/explicit.go
+go14/test/interface/fail.go
+go14/test/interface/fake.go
+go14/test/interface/noeq.go
+go14/test/interface/pointer.go
+go14/test/interface/private.dir/private1.go
+go14/test/interface/private.dir/prog.go
+go14/test/interface/private.go
+go14/test/interface/receiver.go
+go14/test/interface/receiver1.go
+go14/test/interface/recursive.go
+go14/test/interface/recursive1.dir/recursive1.go
+go14/test/interface/recursive1.dir/recursive2.go
+go14/test/interface/recursive1.go
+go14/test/interface/returntype.go
+go14/test/interface/struct.go
+go14/test/iota.go
+go14/test/ken/array.go
+go14/test/ken/chan.go
+go14/test/ken/chan1.go
+go14/test/ken/complit.go
+go14/test/ken/convert.go
+go14/test/ken/cplx0.go
+go14/test/ken/cplx0.out
+go14/test/ken/cplx1.go
+go14/test/ken/cplx2.go
+go14/test/ken/cplx3.go
+go14/test/ken/cplx4.go
+go14/test/ken/cplx5.go
+go14/test/ken/divconst.go
+go14/test/ken/divmod.go
+go14/test/ken/embed.go
+go14/test/ken/for.go
+go14/test/ken/interbasic.go
+go14/test/ken/interfun.go
+go14/test/ken/intervar.go
+go14/test/ken/label.go
+go14/test/ken/litfun.go
+go14/test/ken/mfunc.go
+go14/test/ken/modconst.go
+go14/test/ken/ptrfun.go
+go14/test/ken/ptrvar.go
+go14/test/ken/range.go
+go14/test/ken/rob1.go
+go14/test/ken/rob2.go
+go14/test/ken/robfor.go
+go14/test/ken/robfunc.go
+go14/test/ken/shift.go
+go14/test/ken/simparray.go
+go14/test/ken/simpbool.go
+go14/test/ken/simpconv.go
+go14/test/ken/simpfun.go
+go14/test/ken/simpswitch.go
+go14/test/ken/simpvar.go
+go14/test/ken/slicearray.go
+go14/test/ken/sliceslice.go
+go14/test/ken/string.go
+go14/test/ken/string.out
+go14/test/ken/strvar.go
+go14/test/label.go
+go14/test/label1.go
+go14/test/linkx.go
+go14/test/linkx_run.go
+go14/test/literal.go
+go14/test/live.go
+go14/test/live1.go
+go14/test/live2.go
+go14/test/mallocfin.go
+go14/test/map.go
+go14/test/map1.go
+go14/test/maplinear.go
+go14/test/method.go
+go14/test/method1.go
+go14/test/method2.go
+go14/test/method3.go
+go14/test/method4.dir/method4a.go
+go14/test/method4.dir/prog.go
+go14/test/method4.go
+go14/test/method5.go
+go14/test/named.go
+go14/test/named1.go
+go14/test/nil.go
+go14/test/nilcheck.go
+go14/test/nilptr.go
+go14/test/nilptr2.go
+go14/test/nilptr3.go
+go14/test/nilptr4.go
+go14/test/nosplit.go
+go14/test/nul1.go
+go14/test/parentype.go
+go14/test/peano.go
+go14/test/print.go
+go14/test/print.out
+go14/test/printbig.go
+go14/test/printbig.out
+go14/test/range.go
+go14/test/recover.go
+go14/test/recover1.go
+go14/test/recover2.go
+go14/test/recover3.go
+go14/test/rename.go
+go14/test/rename1.go
+go14/test/reorder.go
+go14/test/reorder2.go
+go14/test/return.go
+go14/test/rotate.go
+go14/test/rotate0.go
+go14/test/rotate1.go
+go14/test/rotate2.go
+go14/test/rotate3.go
+go14/test/run
+go14/test/run.go
+go14/test/rune.go
+go14/test/runtime.go
+go14/test/safe/main.go
+go14/test/safe/nousesafe.go
+go14/test/safe/pkg.go
+go14/test/safe/usesafe.go
+go14/test/shift1.go
+go14/test/shift2.go
+go14/test/sieve.go
+go14/test/sigchld.go
+go14/test/sigchld.out
+go14/test/simassign.go
+go14/test/sinit.go
+go14/test/sinit_run.go
+go14/test/sizeof.go
+go14/test/slice3.go
+go14/test/slice3err.go
+go14/test/slicecap.go
+go14/test/solitaire.go
+go14/test/stack.go
+go14/test/stress/maps.go
+go14/test/stress/parsego.go
+go14/test/stress/runstress.go
+go14/test/string_lit.go
+go14/test/stringrange.go
+go14/test/struct0.go
+go14/test/switch.go
+go14/test/switch3.go
+go14/test/switch4.go
+go14/test/syntax/chan.go
+go14/test/syntax/chan1.go
+go14/test/syntax/composite.go
+go14/test/syntax/else.go
+go14/test/syntax/forvar.go
+go14/test/syntax/if.go
+go14/test/syntax/import.go
+go14/test/syntax/interface.go
+go14/test/syntax/semi1.go
+go14/test/syntax/semi2.go
+go14/test/syntax/semi3.go
+go14/test/syntax/semi4.go
+go14/test/syntax/semi5.go
+go14/test/syntax/semi6.go
+go14/test/syntax/semi7.go
+go14/test/syntax/topexpr.go
+go14/test/syntax/typesw.go
+go14/test/syntax/vareq.go
+go14/test/syntax/vareq1.go
+go14/test/testlib
+go14/test/tinyfin.go
+go14/test/torture.go
+go14/test/turing.go
+go14/test/typecheck.go
+go14/test/typeswitch.go
+go14/test/typeswitch1.go
+go14/test/typeswitch2.go
+go14/test/typeswitch3.go
+go14/test/undef.go
+go14/test/utf.go
+go14/test/varerr.go
+go14/test/varinit.go
+go14/test/zerodivide.go
diff --git a/lang/go14/distinfo b/lang/go14/distinfo
new file mode 100644
index 00000000000..76488be8559
--- /dev/null
+++ b/lang/go14/distinfo
@@ -0,0 +1,33 @@
+$NetBSD: distinfo,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+SHA1 (go1.4.2.src.tar.gz) = 460caac03379f746c473814a65223397e9c9a2f6
+RMD160 (go1.4.2.src.tar.gz) = dea15b3b4c31554a47b40799f4b9a926ea760e70
+Size (go1.4.2.src.tar.gz) = 10921896 bytes
+SHA1 (patch-doc_progs_run) = 5a29fe4f91defb2e20d192850601df7cbabdac7c
+SHA1 (patch-misc_cgo_test_cthread__unix.c) = a63f08f07713bd32e279315cca21235101ce9cd3
+SHA1 (patch-misc_cgo_testso_cgoso.go) = ef782a6f173c814656eac0df640aedaa1a923bbc
+SHA1 (patch-misc_cgo_testso_cgoso__unix.go) = 58e221e1ce123428a3fe6ecededf0590cbfb81ca
+SHA1 (patch-src_cmd_5l_asm.c) = fd78203b7c92b9bbd057077671d649bac2d121ee
+SHA1 (patch-src_cmd_6l_asm.c) = 1f244d7c760e738057b1649ed486206a6ec3812b
+SHA1 (patch-src_cmd_8l_asm.c) = e5233a3d9b08f2ef8d809756ef7d6fc4b03303b9
+SHA1 (patch-src_cmd_go_build.go) = f7705aa955241d3add353a144a676a58a0a1617e
+SHA1 (patch-src_cmd_go_pkg.go) = e70441f3fdf312eb389e4dd5408c207a4d4b8350
+SHA1 (patch-src_cmd_ld_data.c) = 96181bac03333f7bc5293ab9ddbd68bb9174ed47
+SHA1 (patch-src_cmd_ld_doc.go) = 000447f5a5862358a85a7510dc92195494972e26
+SHA1 (patch-src_cmd_ld_lib.h) = e6aa8b9520e1b75f435e179e5ea4f0ef738621f4
+SHA1 (patch-src_cmd_ld_pobj.c) = eaf67d6bc4f9ba835893f9d8c2d36941ff84933d
+SHA1 (patch-src_crypto_x509_root__unix.go) = c933f334da1c8de48a06d23abd12da01f73776e6
+SHA1 (patch-src_go_build_build.go) = b68bc557e7b48877889c63070e9cb9d8360f40f5
+SHA1 (patch-src_net_cgo__bsd.go) = 4678fccd6956300ce55343965334fc3881383bbc
+SHA1 (patch-src_net_cgo__stub.go) = cf373587745d68e556dadf3a61956b489b4f420a
+SHA1 (patch-src_net_cgo__unix.go) = cebe897ab624aaf52bebc50d12a045d6b4ea2bc6
+SHA1 (patch-src_os_user_lookup__unix.go) = 861cf9b2b64bc314b6ee8e11411245e214717515
+SHA1 (patch-src_runtime_cgo_cgo.go) = 9cc88b35d12e0d52e76495e04f7fce2b78af08d5
+SHA1 (patch-src_runtime_cgo_gcc__setenv.c) = c9614b76d71e84ad46b2ce785580fdc54b261455
+SHA1 (patch-src_runtime_cgo_gcc__solaris__amd64.c) = 633d8dcc8a843e343ee2ab9edb7cfaf6f6c3865b
+SHA1 (patch-src_runtime_cgo_setenv.c) = f3b56885fa54cabf78944fad75c21f04bea5cd88
+SHA1 (patch-src_runtime_netpoll__solaris.c) = ae399518bb02d6b898734a52dfa7fe18f041e1ec
+SHA1 (patch-src_runtime_os__solaris.c) = eec5b293fe4a72f58e4cd51cd23ea6e6fce714b6
+SHA1 (patch-src_runtime_os__solaris.h) = c0a39aa6ab57eca7056178c87ebb00bb21236499
+SHA1 (patch-src_runtime_sys__solaris__amd64.s) = 88f2e3fc43b0d6e4f17ef06d3f4f27cfed3103c6
+SHA1 (patch-src_runtime_thunk__solaris__amd64.s) = 2835cdc171ae3209c61ef804fbfbf22cdf68bf43
diff --git a/lang/go14/patches/patch-doc_progs_run b/lang/go14/patches/patch-doc_progs_run
new file mode 100644
index 00000000000..2997c7c115d
--- /dev/null
+++ b/lang/go14/patches/patch-doc_progs_run
@@ -0,0 +1,17 @@
+$NetBSD: patch-doc_progs_run,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- doc/progs/run.orig 2014-12-11 01:18:10.000000000 +0000
++++ doc/progs/run
+@@ -50,6 +50,10 @@ fi
+ if [ "$goos" == "openbsd" ]; then
+ c_go_cgo="cgo1 cgo2"
+ fi
++# cgo3 and cgo4 don't run on illumos, since cgo cannot handle stdout correctly
++if [ "$goos" == "solaris" ]; then
++ c_go_cgo="cgo1 cgo2"
++fi
+ if [ "$CGO_ENABLED" != 1 ]; then
+ c_go_cgo=""
+ fi
diff --git a/lang/go14/patches/patch-misc_cgo_test_cthread__unix.c b/lang/go14/patches/patch-misc_cgo_test_cthread__unix.c
new file mode 100644
index 00000000000..7188e32acce
--- /dev/null
+++ b/lang/go14/patches/patch-misc_cgo_test_cthread__unix.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-misc_cgo_test_cthread__unix.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- misc/cgo/test/cthread_unix.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ misc/cgo/test/cthread_unix.c
+@@ -2,7 +2,7 @@
+ // Use of this source code is governed by a BSD-style
+ // license that can be found in the LICENSE file.
+
+-// +build darwin dragonfly freebsd linux netbsd openbsd
++// +build darwin dragonfly freebsd linux netbsd openbsd solaris
+
+ #include <pthread.h>
+ #include "_cgo_export.h"
diff --git a/lang/go14/patches/patch-misc_cgo_testso_cgoso.go b/lang/go14/patches/patch-misc_cgo_testso_cgoso.go
new file mode 100644
index 00000000000..5a97f3f2e99
--- /dev/null
+++ b/lang/go14/patches/patch-misc_cgo_testso_cgoso.go
@@ -0,0 +1,14 @@
+$NetBSD: patch-misc_cgo_testso_cgoso.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- misc/cgo/testso/cgoso.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ misc/cgo/testso/cgoso.go
+@@ -14,6 +14,7 @@ package cgosotest
+ #cgo netbsd LDFLAGS: -L. libcgosotest.so
+ #cgo darwin LDFLAGS: -L. libcgosotest.dylib
+ #cgo windows LDFLAGS: -L. libcgosotest.dll
++#cgo solaris LDFLAGS: -L. -lcgosotest
+
+ void init(void);
+ void sofunc(void);
diff --git a/lang/go14/patches/patch-misc_cgo_testso_cgoso__unix.go b/lang/go14/patches/patch-misc_cgo_testso_cgoso__unix.go
new file mode 100644
index 00000000000..62fa88b7c2b
--- /dev/null
+++ b/lang/go14/patches/patch-misc_cgo_testso_cgoso__unix.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-misc_cgo_testso_cgoso__unix.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- misc/cgo/testso/cgoso_unix.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ misc/cgo/testso/cgoso_unix.go
+@@ -2,7 +2,7 @@
+ // Use of this source code is governed by a BSD-style
+ // license that can be found in the LICENSE file.
+
+-// +build dragonfly freebsd linux netbsd
++// +build dragonfly freebsd linux netbsd solaris
+
+ package cgosotest
+
diff --git a/lang/go14/patches/patch-src_cmd_5l_asm.c b/lang/go14/patches/patch-src_cmd_5l_asm.c
new file mode 100644
index 00000000000..3b22e456828
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_5l_asm.c
@@ -0,0 +1,36 @@
+$NetBSD: patch-src_cmd_5l_asm.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/5l/asm.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/cmd/5l/asm.c
+@@ -502,27 +502,8 @@ adddynsym(Link *ctxt, LSym *s)
+ adduint8(ctxt, d, t);
+ adduint8(ctxt, d, 0);
+
+- /* shndx */
+- if(s->type == SDYNIMPORT)
+- adduint16(ctxt, d, SHN_UNDEF);
+- else {
+- switch(s->type) {
+- default:
+- case STEXT:
+- t = 11;
+- break;
+- case SRODATA:
+- t = 12;
+- break;
+- case SDATA:
+- t = 13;
+- break;
+- case SBSS:
+- t = 14;
+- break;
+- }
+- adduint16(ctxt, d, t);
+- }
++ /* shndx; see dodynsym(). */
++ adduint16(ctxt, d, SHN_UNDEF);
+ } else {
+ diag("adddynsym: unsupported binary format");
+ }
diff --git a/lang/go14/patches/patch-src_cmd_6l_asm.c b/lang/go14/patches/patch-src_cmd_6l_asm.c
new file mode 100644
index 00000000000..ed430260909
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_6l_asm.c
@@ -0,0 +1,68 @@
+$NetBSD: patch-src_cmd_6l_asm.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/6l/asm.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/cmd/6l/asm.c
+@@ -209,12 +209,23 @@ adddynrel(LSym *s, Reloc *r)
+
+ case R_ADDR:
+ if(s->type == STEXT && iself) {
+- // The code is asking for the address of an external
+- // function. We provide it with the address of the
+- // correspondent GOT symbol.
+- addgotsym(targ);
+- r->sym = linklookup(ctxt, ".got", 0);
+- r->add += targ->got;
++ /*
++ * On SunOS, all external references are dynamic.
++ * Emit a PLT relocation at this site.
++ */
++ if (HEADTYPE == Hsolaris) {
++ addpltsym(targ);
++ r->sym = linklookup(ctxt, ".plt", 0);
++ r->add = targ->plt;
++ } else {
++ // The code is asking for the address of an
++ // external function. We provide it with the
++ // address of the correspondent GOT symbol.
++ addgotsym(targ);
++ r->sym = linklookup(ctxt, ".got", 0);
++ r->add += targ->got;
++ }
++
+ return;
+ }
+ if(s->type != SDATA)
+@@ -539,28 +550,9 @@ adddynsym(Link *ctxt, LSym *s)
+
+ /* reserved */
+ adduint8(ctxt, d, 0);
+-
+- /* section where symbol is defined */
+- if(s->type == SDYNIMPORT)
+- adduint16(ctxt, d, SHN_UNDEF);
+- else {
+- switch(s->type) {
+- default:
+- case STEXT:
+- t = 11;
+- break;
+- case SRODATA:
+- t = 12;
+- break;
+- case SDATA:
+- t = 13;
+- break;
+- case SBSS:
+- t = 14;
+- break;
+- }
+- adduint16(ctxt, d, t);
+- }
++
++ /* section where symbol is defined; see dodynsym(). */
++ adduint16(ctxt, d, SHN_UNDEF);
+
+ /* value */
+ if(s->type == SDYNIMPORT)
diff --git a/lang/go14/patches/patch-src_cmd_8l_asm.c b/lang/go14/patches/patch-src_cmd_8l_asm.c
new file mode 100644
index 00000000000..d40678259e4
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_8l_asm.c
@@ -0,0 +1,36 @@
+$NetBSD: patch-src_cmd_8l_asm.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/8l/asm.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/cmd/8l/asm.c
+@@ -508,27 +508,8 @@ adddynsym(Link *ctxt, LSym *s)
+ adduint8(ctxt, d, t);
+ adduint8(ctxt, d, 0);
+
+- /* shndx */
+- if(s->type == SDYNIMPORT)
+- adduint16(ctxt, d, SHN_UNDEF);
+- else {
+- switch(s->type) {
+- default:
+- case STEXT:
+- t = 11;
+- break;
+- case SRODATA:
+- t = 12;
+- break;
+- case SDATA:
+- t = 13;
+- break;
+- case SBSS:
+- t = 14;
+- break;
+- }
+- adduint16(ctxt, d, t);
+- }
++ /* shndx; see dodynsym(). */
++ adduint16(ctxt, d, SHN_UNDEF);
+ } else if(HEADTYPE == Hdarwin) {
+ diag("adddynsym: missed symbol %s (%s)", s->name, s->extname);
+ } else if(HEADTYPE == Hwindows) {
diff --git a/lang/go14/patches/patch-src_cmd_go_build.go b/lang/go14/patches/patch-src_cmd_go_build.go
new file mode 100644
index 00000000000..4e09febabed
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_go_build.go
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_cmd_go_build.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/go/build.go.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/cmd/go/build.go
+@@ -2330,6 +2330,10 @@ func (b *builder) cgo(p *Package, cgoExe
+ if pie { // we need to use -pie for Linux/ARM to get accurate imported sym
+ cgoLDFLAGS = append(cgoLDFLAGS, "-pie")
+ }
++ lgcc_s := goos == "solaris"
++ if lgcc_s {
++ cgoLDFLAGS = append(cgoLDFLAGS, "-lgcc_s");
++ }
+ if err := b.gccld(p, dynobj, cgoLDFLAGS, linkobj); err != nil {
+ return nil, nil, err
+ }
diff --git a/lang/go14/patches/patch-src_cmd_go_pkg.go b/lang/go14/patches/patch-src_cmd_go_pkg.go
new file mode 100644
index 00000000000..1a205d17418
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_go_pkg.go
@@ -0,0 +1,17 @@
+$NetBSD: patch-src_cmd_go_pkg.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Do not try to install go-tools into GOROOT. This is done in the
+go-tools package instead.
+
+--- src/cmd/go/pkg.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/cmd/go/pkg.go
+@@ -401,9 +401,6 @@ var goTools = map[string]targetDir{
+ "cmd/pack": toTool,
+ "cmd/pprof": toTool,
+ "cmd/yacc": toTool,
+- "golang.org/x/tools/cmd/cover": toTool,
+- "golang.org/x/tools/cmd/godoc": toBin,
+- "golang.org/x/tools/cmd/vet": toTool,
+ "code.google.com/p/go.tools/cmd/cover": stalePath,
+ "code.google.com/p/go.tools/cmd/godoc": stalePath,
+ "code.google.com/p/go.tools/cmd/vet": stalePath,
diff --git a/lang/go14/patches/patch-src_cmd_ld_data.c b/lang/go14/patches/patch-src_cmd_ld_data.c
new file mode 100644
index 00000000000..876ab16e40b
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_ld_data.c
@@ -0,0 +1,139 @@
+$NetBSD: patch-src_cmd_ld_data.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/ld/data.c.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/cmd/ld/data.c
+@@ -965,6 +965,46 @@ dodata(void)
+ datap = listsort(datap, datcmp, offsetof(LSym, next));
+
+ /*
++ * The SunOS rtld expects the .rel/.rela and .rel.plt/.rela.plt
++ * sections to be contiguous. More properly, it expects that the
++ * region starting from the lower of DT_RELA and DT_PLTREL and
++ * continuing for DT_RELASZ bytes contains at least the set of non-PLT
++ * relocation entries. To ensure this, we put .rel[a].plt after .rel[a].
++ * This is actually required by the ELF gABI on all ELF platforms.
++ */
++ if (ctxt->headtype == Hsolaris) {
++ for (l = &datap; (s = *l) != nil; ) {
++ if (strcmp(s->name, ".rel.plt") == 0 ||
++ strcmp(s->name, ".rela.plt") == 0) {
++ *l = s->next;
++ s->next = nil;
++ last = s;
++ break;
++ }
++ l = &s->next;
++ }
++
++ if (s != nil) {
++ for (s = datap; s != nil; s = s->next) {
++ if (strcmp(s->name, ".rel") == 0 ||
++ strcmp(s->name, ".rela") == 0) {
++ last->next = s->next;
++ s->next = last;
++ break;
++ }
++ }
++ /*
++ * .rel[a].plt without .rel[a]. Should never occur
++ * but just in case, put it back where we found it.
++ */
++ if (s == nil) {
++ last->next = (*l)->next;
++ (*l)->next = last;
++ }
++ }
++ }
++
++ /*
+ * allocate sections. list is sorted by type,
+ * so we can just walk it for each piece we want to emit.
+ * segdata is processed before segtext, because we need
+@@ -1239,6 +1279,85 @@ dodata(void)
+ sect->extnum = n++;
+ }
+
++/*
++ * Fix up the section numbers in .dynsym if present. We could not write these
++ * shndx entries until we know all present sections and have sorted them.
++ *
++ * Each dynsym entry is actually an ElfXX_Sym, and we're going to replace the
++ * st_shndx field. For 32-bit targets, that's at offset 0xe; for 64-bit, it's
++ * at offset 0x6. Anything we don't expect, we ignore and leave unchanged.
++ */
++void
++dodynsym(void)
++{
++ LSym *ds;
++ LSym *ss;
++ LSym *s;
++ vlong off;
++ size_t entsz;
++ uint16 ent;
++ char *sectname = nil;
++
++ if (!iself)
++ return;
++
++ ds = linklookup(ctxt, ".dynsym", 0);
++
++ if (ds == nil)
++ return;
++
++ if (thechar == '6')
++ entsz = ELF64SYMSIZE;
++ else
++ entsz = ELF32SYMSIZE;
++
++ for(s = ctxt->allsym; s != nil; s = s->allsym) {
++ if (s->dynid <= 0 || s->type == SDYNIMPORT)
++ continue;
++
++ if (s->sect != nil) {
++ ent = s->sect->extnum;
++ } else {
++ switch (s->type) {
++ case STEXT:
++ default:
++ sectname = ".text";
++ break;
++ case SRODATA:
++ sectname = ".rodata";
++ break;
++ case SDATA:
++ sectname = ".data";
++ break;
++ case SBSS:
++ sectname = ".bss";
++ break;
++ }
++
++ ss = linklookup(ctxt, sectname, 0);
++ if (ss == nil || ss->sect == nil) {
++ diag("dodynsym: symbol %s in nonexistent %s",
++ s->extname != nil ? s->extname : "<none>",
++ sectname);
++ continue;
++ }
++
++ ent = ss->sect->extnum;
++ }
++
++ if (ent == 0) {
++ diag("dodynsym: symbol %s in section 0; ignored");
++ continue;
++ }
++
++ off = s->dynid * entsz +
++ ((thechar == '6') ? offsetof(Elf64_Sym, shndx) :
++ offsetof(Elf32_Sym, shndx));
++
++ (void) setuint16(ctxt, ds, off, ent);
++ }
++}
++
+ // assign addresses to text
+ void
+ textaddress(void)
diff --git a/lang/go14/patches/patch-src_cmd_ld_doc.go b/lang/go14/patches/patch-src_cmd_ld_doc.go
new file mode 100644
index 00000000000..851c770aac2
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_ld_doc.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_cmd_ld_doc.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/ld/doc.go.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/cmd/ld/doc.go
+@@ -30,7 +30,7 @@ Options new in this version:
+ Elide the dynamic linking header. With this option, the binary
+ is statically linked and does not refer to a dynamic linker. Without this option
+ (the default), the binary's contents are identical but it is loaded with a dynamic
+- linker. This flag cannot be used when $GOOS is windows.
++ linker. This flag cannot be used when $GOOS is windows or solaris
+ -H darwin (only in 6l/8l)
+ Write Apple Mach-O binaries (default when $GOOS is darwin)
+ -H dragonfly (only in 6l/8l)
diff --git a/lang/go14/patches/patch-src_cmd_ld_lib.h b/lang/go14/patches/patch-src_cmd_ld_lib.h
new file mode 100644
index 00000000000..32e976f5893
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_ld_lib.h
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_cmd_ld_lib.h,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/ld/lib.h.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/cmd/ld/lib.h
+@@ -216,6 +216,7 @@ char* decodetype_structfieldname(LSym *s
+ vlong decodetype_structfieldoffs(LSym *s, int i);
+ LSym* decodetype_structfieldtype(LSym *s, int i);
+ void dodata(void);
++void dodynsym(void);
+ void dostkcheck(void);
+ void dostkoff(void);
+ void dosymtype(void);
diff --git a/lang/go14/patches/patch-src_cmd_ld_pobj.c b/lang/go14/patches/patch-src_cmd_ld_pobj.c
new file mode 100644
index 00000000000..5e673190871
--- /dev/null
+++ b/lang/go14/patches/patch-src_cmd_ld_pobj.c
@@ -0,0 +1,27 @@
+$NetBSD: patch-src_cmd_ld_pobj.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/cmd/ld/pobj.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/cmd/ld/pobj.c
+@@ -151,6 +151,12 @@ main(int argc, char *argv[])
+ if(headstring == nil)
+ headstring = headstr(HEADTYPE);
+
++ if (HEADTYPE == Hsolaris && debug['d'] != 0) {
++ fprint(2, "%cl: -d is not supported with this target\n",
++ thechar);
++ exits("usage");
++ }
++
+ archinit();
+ ctxt->debugfloat = debug['F'];
+
+@@ -188,6 +194,7 @@ main(int argc, char *argv[])
+ pclntab();
+ symtab();
+ dodata();
++ dodynsym();
+ address();
+ doweak();
+ reloc();
diff --git a/lang/go14/patches/patch-src_crypto_x509_root__unix.go b/lang/go14/patches/patch-src_crypto_x509_root__unix.go
new file mode 100644
index 00000000000..b4a3943ac53
--- /dev/null
+++ b/lang/go14/patches/patch-src_crypto_x509_root__unix.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_crypto_x509_root__unix.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Also look for the right path for the SSL certificate repository on NetBSD.
+https://github.com/golang/go/issues/9285
+
+--- src/crypto/x509/root_unix.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/crypto/x509/root_unix.go
+@@ -13,6 +13,7 @@ var certFiles = []string{
+ "/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc.
+ "/etc/pki/tls/certs/ca-bundle.crt", // Fedora/RHEL
+ "/etc/ssl/ca-bundle.pem", // OpenSUSE
++ "/etc/openssl/certs/ca-certificates.crt", // NetBSD
+ "/etc/ssl/cert.pem", // OpenBSD
+ "/usr/local/share/certs/ca-root-nss.crt", // FreeBSD/DragonFly
+ "/etc/pki/tls/cacert.pem", // OpenELEC
diff --git a/lang/go14/patches/patch-src_go_build_build.go b/lang/go14/patches/patch-src_go_build_build.go
new file mode 100644
index 00000000000..e20c75a8adf
--- /dev/null
+++ b/lang/go14/patches/patch-src_go_build_build.go
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_go_build_build.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/go/build/build.go.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/go/build/build.go
+@@ -277,6 +277,7 @@ var cgoEnabled = map[string]bool{
+ "openbsd/amd64": true,
+ "windows/386": true,
+ "windows/amd64": true,
++ "solaris/amd64": true,
+ }
+
+ func defaultContext() Context {
diff --git a/lang/go14/patches/patch-src_net_cgo__bsd.go b/lang/go14/patches/patch-src_net_cgo__bsd.go
new file mode 100644
index 00000000000..b3e8b3a9ce8
--- /dev/null
+++ b/lang/go14/patches/patch-src_net_cgo__bsd.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_net_cgo__bsd.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/net/cgo_bsd.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/net/cgo_bsd.go
+@@ -3,7 +3,7 @@
+ // license that can be found in the LICENSE file.
+
+ // +build !netgo
+-// +build darwin dragonfly freebsd solaris
++// +build darwin dragonfly freebsd
+
+ package net
+
diff --git a/lang/go14/patches/patch-src_net_cgo__stub.go b/lang/go14/patches/patch-src_net_cgo__stub.go
new file mode 100644
index 00000000000..2d911c9f472
--- /dev/null
+++ b/lang/go14/patches/patch-src_net_cgo__stub.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_net_cgo__stub.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/net/cgo_stub.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/net/cgo_stub.go
+@@ -2,7 +2,7 @@
+ // Use of this source code is governed by a BSD-style
+ // license that can be found in the LICENSE file.
+
+-// +build !cgo netgo
++// +build !cgo netgo solaris
+
+ // Stub cgo routines for systems that do not use cgo to do network lookups.
+
diff --git a/lang/go14/patches/patch-src_net_cgo__unix.go b/lang/go14/patches/patch-src_net_cgo__unix.go
new file mode 100644
index 00000000000..4d5f126a1e6
--- /dev/null
+++ b/lang/go14/patches/patch-src_net_cgo__unix.go
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_net_cgo__unix.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/net/cgo_unix.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/net/cgo_unix.go
+@@ -3,7 +3,7 @@
+ // license that can be found in the LICENSE file.
+
+ // +build !netgo
+-// +build darwin dragonfly freebsd linux netbsd openbsd
++// +build darwin dragonfly freebsd linux netbsd openbsd !solaris
+
+ package net
+
diff --git a/lang/go14/patches/patch-src_os_user_lookup__unix.go b/lang/go14/patches/patch-src_os_user_lookup__unix.go
new file mode 100644
index 00000000000..e4442f8b795
--- /dev/null
+++ b/lang/go14/patches/patch-src_os_user_lookup__unix.go
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_os_user_lookup__unix.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/os/user/lookup_unix.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/os/user/lookup_unix.go
+@@ -17,6 +17,7 @@ import (
+ )
+
+ /*
++#cgo solaris CFLAGS: -D_POSIX_PTHREAD_SEMANTICS
+ #include <unistd.h>
+ #include <sys/types.h>
+ #include <pwd.h>
diff --git a/lang/go14/patches/patch-src_runtime_cgo_cgo.go b/lang/go14/patches/patch-src_runtime_cgo_cgo.go
new file mode 100644
index 00000000000..6f2764a7ab6
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_cgo_cgo.go
@@ -0,0 +1,14 @@
+$NetBSD: patch-src_runtime_cgo_cgo.go,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/cgo/cgo.go.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/runtime/cgo/cgo.go
+@@ -21,6 +21,7 @@ package cgo
+ #cgo windows LDFLAGS: -lm -mthreads
+
+ #cgo CFLAGS: -Wall -Werror
++#cgo solaris CFLAGS: -D_POSIX_PTHREAD_SEMANTICS
+
+ */
+ import "C"
diff --git a/lang/go14/patches/patch-src_runtime_cgo_gcc__setenv.c b/lang/go14/patches/patch-src_runtime_cgo_gcc__setenv.c
new file mode 100644
index 00000000000..0c6ab1987ee
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_cgo_gcc__setenv.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_runtime_cgo_gcc__setenv.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/cgo/gcc_setenv.c.orig 2014-12-11 01:18:10.000000000 +0000
++++ src/runtime/cgo/gcc_setenv.c
+@@ -2,7 +2,7 @@
+ // Use of this source code is governed by a BSD-style
+ // license that can be found in the LICENSE file.
+
+-// +build darwin dragonfly freebsd linux netbsd openbsd
++// +build darwin dragonfly freebsd linux netbsd openbsd solaris
+
+ #include "libcgo.h"
+
diff --git a/lang/go14/patches/patch-src_runtime_cgo_gcc__solaris__amd64.c b/lang/go14/patches/patch-src_runtime_cgo_gcc__solaris__amd64.c
new file mode 100644
index 00000000000..108f3e6d167
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_cgo_gcc__solaris__amd64.c
@@ -0,0 +1,77 @@
+$NetBSD: patch-src_runtime_cgo_gcc__solaris__amd64.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- /dev/null
++++ src/runtime/cgo/gcc_solaris_amd64.c
+@@ -0,0 +1,70 @@
++// Copyright 2009 The Go Authors. All rights reserved.
++// Use of this source code is governed by a BSD-style
++// license that can be found in the LICENSE file.
++
++#include <pthread.h>
++#include <string.h>
++#include <signal.h>
++#include "libcgo.h"
++
++static void* threadentry(void*);
++static void (*setg_gcc)(void*);
++
++void
++x_cgo_init(G *g, void (*setg)(void*))
++{
++ pthread_attr_t attr;
++ size_t size;
++
++ setg_gcc = setg;
++ pthread_attr_init(&attr);
++ if (pthread_attr_getstack(&attr, (void **)&g->stacklo, &size) != 0)
++ perror("runtime/cgo: pthread_attr_getstack failed");
++ g->stackhi = (uintptr_t)g->stacklo + 8192;
++ pthread_attr_destroy(&attr);
++}
++
++void
++_cgo_sys_thread_start(ThreadStart *ts)
++{
++ pthread_attr_t attr;
++ sigset_t ign, oset;
++ pthread_t p;
++ size_t size;
++ int err;
++
++ sigfillset(&ign);
++ pthread_sigmask(SIG_SETMASK, &ign, &oset);
++
++ pthread_attr_init(&attr);
++
++ if (pthread_attr_getstack(&attr, (void **)&ts->g->stacklo, &size) != 0)
++ perror("runtime/cgo: pthread_attr_getstack failed");
++ ts->g->stackhi = (uintptr_t)ts->g->stacklo + 8192;
++ pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
++ err = pthread_create(&p, &attr, threadentry, ts);
++
++ pthread_sigmask(SIG_SETMASK, &oset, nil);
++
++ if (err != 0) {
++ fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
++ abort();
++ }
++}
++
++static void*
++threadentry(void *v)
++{
++ ThreadStart ts;
++
++ ts = *(ThreadStart*)v;
++ free(v);
++
++ /*
++ * Set specific keys.
++ */
++ setg_gcc((void*)ts.g);
++
++ crosscall_amd64(ts.fn);
++ return nil;
++}
diff --git a/lang/go14/patches/patch-src_runtime_cgo_setenv.c b/lang/go14/patches/patch-src_runtime_cgo_setenv.c
new file mode 100644
index 00000000000..c7479145fe4
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_cgo_setenv.c
@@ -0,0 +1,15 @@
+$NetBSD: patch-src_runtime_cgo_setenv.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/cgo/setenv.c.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/cgo/setenv.c
+@@ -2,7 +2,7 @@
+ // Use of this source code is governed by a BSD-style
+ // license that can be found in the LICENSE file.
+
+-// +build darwin dragonfly freebsd linux netbsd openbsd
++// +build darwin dragonfly freebsd linux netbsd openbsd solaris
+
+ #pragma cgo_import_static x_cgo_setenv
+ #pragma cgo_import_static x_cgo_unsetenv
diff --git a/lang/go14/patches/patch-src_runtime_netpoll__solaris.c b/lang/go14/patches/patch-src_runtime_netpoll__solaris.c
new file mode 100644
index 00000000000..909912dc30b
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_netpoll__solaris.c
@@ -0,0 +1,26 @@
+$NetBSD: patch-src_runtime_netpoll__solaris.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/netpoll_solaris.c.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/netpoll_solaris.c
+@@ -73,11 +73,14 @@
+ #pragma dynimport libc·port_associate port_associate "libc.so"
+ #pragma dynimport libc·port_dissociate port_dissociate "libc.so"
+ #pragma dynimport libc·port_getn port_getn "libc.so"
+-extern uintptr libc·fcntl;
+-extern uintptr libc·port_create;
+-extern uintptr libc·port_associate;
+-extern uintptr libc·port_dissociate;
+-extern uintptr libc·port_getn;
++
++typedef uintptr (extf)();
++
++extern extf libc·fcntl;
++extern extf libc·port_create;
++extern extf libc·port_associate;
++extern extf libc·port_dissociate;
++extern extf libc·port_getn;
+
+ #define errno (*g->m->perrno)
+
diff --git a/lang/go14/patches/patch-src_runtime_os__solaris.c b/lang/go14/patches/patch-src_runtime_os__solaris.c
new file mode 100644
index 00000000000..97fce63bb57
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_os__solaris.c
@@ -0,0 +1,95 @@
+$NetBSD: patch-src_runtime_os__solaris.c,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/os_solaris.c.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/os_solaris.c
+@@ -46,38 +46,40 @@
+ #pragma dynimport libc·usleep usleep "libc.so"
+ #pragma dynimport libc·write write "libc.so"
+
+-extern uintptr libc·___errno;
+-extern uintptr libc·clock_gettime;
+-extern uintptr libc·close;
+-extern uintptr libc·exit;
+-extern uintptr libc·fstat;
+-extern uintptr libc·getcontext;
+-extern uintptr libc·getrlimit;
+-extern uintptr libc·malloc;
+-extern uintptr libc·mmap;
+-extern uintptr libc·munmap;
+-extern uintptr libc·open;
+-extern uintptr libc·pthread_attr_destroy;
+-extern uintptr libc·pthread_attr_getstack;
+-extern uintptr libc·pthread_attr_init;
+-extern uintptr libc·pthread_attr_setdetachstate;
+-extern uintptr libc·pthread_attr_setstack;
+-extern uintptr libc·pthread_create;
+-extern uintptr libc·raise;
+-extern uintptr libc·read;
+-extern uintptr libc·sched_yield;
+-extern uintptr libc·select;
+-extern uintptr libc·sem_init;
+-extern uintptr libc·sem_post;
+-extern uintptr libc·sem_reltimedwait_np;
+-extern uintptr libc·sem_wait;
+-extern uintptr libc·setitimer;
+-extern uintptr libc·sigaction;
+-extern uintptr libc·sigaltstack;
+-extern uintptr libc·sigprocmask;
+-extern uintptr libc·sysconf;
+-extern uintptr libc·usleep;
+-extern uintptr libc·write;
++typedef uintptr (extf)();
++
++extern extf libc·___errno;
++extern extf libc·clock_gettime;
++extern extf libc·close;
++extern extf libc·exit;
++extern extf libc·fstat;
++extern extf libc·getcontext;
++extern extf libc·getrlimit;
++extern extf libc·malloc;
++extern extf libc·mmap;
++extern extf libc·munmap;
++extern extf libc·open;
++extern extf libc·pthread_attr_destroy;
++extern extf libc·pthread_attr_getstack;
++extern extf libc·pthread_attr_init;
++extern extf libc·pthread_attr_setdetachstate;
++extern extf libc·pthread_attr_setstack;
++extern extf libc·pthread_create;
++extern extf libc·raise;
++extern extf libc·read;
++extern extf libc·sched_yield;
++extern extf libc·select;
++extern extf libc·sem_init;
++extern extf libc·sem_post;
++extern extf libc·sem_reltimedwait_np;
++extern extf libc·sem_wait;
++extern extf libc·setitimer;
++extern extf libc·sigaction;
++extern extf libc·sigaltstack;
++extern extf libc·sigprocmask;
++extern extf libc·sysconf;
++extern extf libc·usleep;
++extern extf libc·write;
+
+ void runtime·getcontext(Ucontext *context);
+ int32 runtime·pthread_attr_destroy(PthreadAttr* attr);
+@@ -396,12 +398,13 @@ runtime·munmap(byte* addr, uintptr len)
+ runtime·sysvicall2(libc·munmap, (uintptr)addr, (uintptr)len);
+ }
+
+-extern int64 runtime·nanotime1(void);
++extern uintptr runtime·nanotime1(void);
++
+ #pragma textflag NOSPLIT
+ int64
+ runtime·nanotime(void)
+ {
+- return runtime·sysvicall0((uintptr)runtime·nanotime1);
++ return runtime·sysvicall0(runtime·nanotime1);
+ }
+
+ #pragma textflag NOSPLIT
diff --git a/lang/go14/patches/patch-src_runtime_os__solaris.h b/lang/go14/patches/patch-src_runtime_os__solaris.h
new file mode 100644
index 00000000000..61f7cada912
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_os__solaris.h
@@ -0,0 +1,27 @@
+$NetBSD: patch-src_runtime_os__solaris.h,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/os_solaris.h.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/os_solaris.h
+@@ -43,13 +43,13 @@ int32 runtime·getrlimit(int32, Rlimit
+
+ // Call an external library function described by {fn, a0, ..., an}, with
+ // SysV conventions, switching to os stack during the call, if necessary.
+-uintptr runtime·sysvicall0(uintptr fn);
+-uintptr runtime·sysvicall1(uintptr fn, uintptr a1);
+-uintptr runtime·sysvicall2(uintptr fn, uintptr a1, uintptr a2);
+-uintptr runtime·sysvicall3(uintptr fn, uintptr a1, uintptr a2, uintptr a3);
+-uintptr runtime·sysvicall4(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4);
+-uintptr runtime·sysvicall5(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5);
+-uintptr runtime·sysvicall6(uintptr fn, uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5, uintptr a6);
++uintptr runtime·sysvicall0(uintptr (*fn)());
++uintptr runtime·sysvicall1(uintptr (*fn)(), uintptr a1);
++uintptr runtime·sysvicall2(uintptr (*fn)(), uintptr a1, uintptr a2);
++uintptr runtime·sysvicall3(uintptr (*fn)(), uintptr a1, uintptr a2, uintptr a3);
++uintptr runtime·sysvicall4(uintptr (*fn)(), uintptr a1, uintptr a2, uintptr a3, uintptr a4);
++uintptr runtime·sysvicall5(uintptr (*fn)(), uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5);
++uintptr runtime·sysvicall6(uintptr (*fn)(), uintptr a1, uintptr a2, uintptr a3, uintptr a4, uintptr a5, uintptr a6);
+ void runtime·asmsysvicall6(void *c);
+
+ void runtime·miniterrno(void *fn);
diff --git a/lang/go14/patches/patch-src_runtime_sys__solaris__amd64.s b/lang/go14/patches/patch-src_runtime_sys__solaris__amd64.s
new file mode 100644
index 00000000000..fe5e55b7dff
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_sys__solaris__amd64.s
@@ -0,0 +1,40 @@
+$NetBSD: patch-src_runtime_sys__solaris__amd64.s,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/sys_solaris_amd64.s.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/sys_solaris_amd64.s
+@@ -40,7 +40,7 @@ TEXT runtime·nanotime1(SB),NOSPLIT,$0
+ SUBQ $64, SP // 16 bytes will do, but who knows in the future?
+ MOVQ $3, DI // CLOCK_REALTIME from <sys/time_impl.h>
+ MOVQ SP, SI
+- MOVQ libc·clock_gettime(SB), AX
++ LEAQ libc·clock_gettime(SB), AX
+ CALL AX
+ MOVQ (SP), AX // tv_sec from struct timespec
+ IMULQ $1000000000, AX // multiply into nanoseconds
+@@ -53,7 +53,7 @@ TEXT runtime·nanotime1(SB),NOSPLIT,$0
+ TEXT runtime·pipe1(SB),NOSPLIT,$0
+ SUBQ $16, SP // 8 bytes will do, but stack has to be 16-byte alligned
+ MOVQ SP, DI
+- MOVQ libc·pipe(SB), AX
++ LEAQ libc·pipe(SB), AX
+ CALL AX
+ MOVL 0(SP), AX
+ MOVL 4(SP), DX
+@@ -320,13 +320,13 @@ usleep1_noswitch:
+
+ // Runs on OS stack. duration (in µs units) is in DI.
+ TEXT runtime·usleep2(SB),NOSPLIT,$0
+- MOVQ libc·usleep(SB), AX
++ LEAQ libc·usleep(SB), AX
+ CALL AX
+ RET
+
+ // Runs on OS stack, called from runtime·osyield.
+ TEXT runtime·osyield1(SB),NOSPLIT,$0
+- MOVQ libc·sched_yield(SB), AX
++ LEAQ libc·sched_yield(SB), AX
+ CALL AX
+ RET
+
diff --git a/lang/go14/patches/patch-src_runtime_thunk__solaris__amd64.s b/lang/go14/patches/patch-src_runtime_thunk__solaris__amd64.s
new file mode 100644
index 00000000000..0e394ff6781
--- /dev/null
+++ b/lang/go14/patches/patch-src_runtime_thunk__solaris__amd64.s
@@ -0,0 +1,108 @@
+$NetBSD: patch-src_runtime_thunk__solaris__amd64.s,v 1.1 2015/07/31 14:46:25 bsiegert Exp $
+
+Support cgo on illumos.
+
+--- src/runtime/thunk_solaris_amd64.s.orig 2014-12-11 01:18:12.000000000 +0000
++++ src/runtime/thunk_solaris_amd64.s
+@@ -8,81 +8,81 @@
+ #include "textflag.h"
+
+ TEXT runtime·libc_chdir(SB),NOSPLIT,$0
+- MOVQ libc·chdir(SB), AX
++ LEAQ libc·chdir(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_chroot(SB),NOSPLIT,$0
+- MOVQ libc·chroot(SB), AX
++ LEAQ libc·chroot(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_close(SB),NOSPLIT,$0
+- MOVQ libc·close(SB), AX
++ LEAQ libc·close(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_dlopen(SB),NOSPLIT,$0
+- MOVQ libc·dlopen(SB), AX
++ LEAQ libc·dlopen(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_dlclose(SB),NOSPLIT,$0
+- MOVQ libc·dlclose(SB), AX
++ LEAQ libc·dlclose(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_dlsym(SB),NOSPLIT,$0
+- MOVQ libc·dlsym(SB), AX
++ LEAQ libc·dlsym(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_execve(SB),NOSPLIT,$0
+- MOVQ libc·execve(SB), AX
++ LEAQ libc·execve(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_exit(SB),NOSPLIT,$0
+- MOVQ libc·exit(SB), AX
++ LEAQ libc·exit(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_fcntl(SB),NOSPLIT,$0
+- MOVQ libc·fcntl(SB), AX
++ LEAQ libc·fcntl(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_forkx(SB),NOSPLIT,$0
+- MOVQ libc·forkx(SB), AX
++ LEAQ libc·forkx(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_gethostname(SB),NOSPLIT,$0
+- MOVQ libc·gethostname(SB), AX
++ LEAQ libc·gethostname(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_ioctl(SB),NOSPLIT,$0
+- MOVQ libc·ioctl(SB), AX
++ LEAQ libc·ioctl(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_setgid(SB),NOSPLIT,$0
+- MOVQ libc·setgid(SB), AX
++ LEAQ libc·setgid(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_setgroups(SB),NOSPLIT,$0
+- MOVQ libc·setgroups(SB), AX
++ LEAQ libc·setgroups(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_setsid(SB),NOSPLIT,$0
+- MOVQ libc·setsid(SB), AX
++ LEAQ libc·setsid(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_setuid(SB),NOSPLIT,$0
+- MOVQ libc·setuid(SB), AX
++ LEAQ libc·setuid(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_setpgid(SB),NOSPLIT,$0
+- MOVQ libc·setpgid(SB), AX
++ LEAQ libc·setpgid(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_syscall(SB),NOSPLIT,$0
+- MOVQ libc·syscall(SB), AX
++ LEAQ libc·syscall(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_wait4(SB),NOSPLIT,$0
+- MOVQ libc·wait4(SB), AX
++ LEAQ libc·wait4(SB), AX
+ JMP AX
+
+ TEXT runtime·libc_write(SB),NOSPLIT,$0
+- MOVQ libc·write(SB), AX
++ LEAQ libc·write(SB), AX
+ JMP AX