aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/math/big/arith_decl.go
AgeCommit message (Collapse)AuthorFilesLines
2021-08-12libgo: update to Go1.17rc2Ian Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/341629
2020-12-30libgo: update to Go1.16beta1 releaseIan Lance Taylor1-2/+0
This does not yet include support for the //go:embed directive added in this release. * Makefile.am (check-runtime): Don't create check-runtime-dir. (mostlyclean-local): Don't remove check-runtime-dir. (check-go-tool, check-vet): Copy in go.mod and modules.txt. (check-cgo-test, check-carchive-test): Add go.mod file. * Makefile.in: Regenerate. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/280172
2020-08-01libgo: update to go1.15rc1Ian Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/245157
2020-02-15libgo: update to Go1.14rc1 releaseIan Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/218017
2017-09-14libgo: update to go1.9Ian Lance Taylor1-1/+0
Reviewed-on: https://go-review.googlesource.com/63753 From-SVN: r252767
2016-08-06libgo: change build procedure to use build tagsIan Lance Taylor1-0/+1
Previously the libgo Makefile explicitly listed the set of files to compile for each package. For packages that use build tags, this required a lot of awkward automake conditionals in the Makefile. This CL changes the build to look at the build tags in the files. The new shell script libgo/match.sh does the matching. This required adjusting a lot of build tags, and removing some files that are never used. I verified that the exact same sets of files are compiled on amd64 GNU/Linux. I also tested the build on i386 Solaris. Writing match.sh revealed some bugs in the build tag handling that already exists, in a slightly different form, in the gotest shell script. This CL fixes those problems as well. The old code used automake conditionals to handle systems that were missing strerror_r and wait4. Rather than deal with those in Go, those functions are now implemented in runtime/go-nosys.c when necessary, so the Go code can simply assume that they exist. The os testsuite looked for dir_unix.go, which was never built for gccgo and has now been removed. I changed the testsuite to look for dir.go instead. Reviewed-on: https://go-review.googlesource.com/25546 From-SVN: r239189
2016-07-22libgo: update to go1.7rc3Ian Lance Taylor1-1/+1
Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
2015-10-31runtime: Remove now unnecessary pad field from ParFor.Ian Lance Taylor1-0/+2
It is not needed due to the removal of the ctx field. Reviewed-on: https://go-review.googlesource.com/16525 From-SVN: r229616
2012-02-01libgo: Update to weekly.2012-01-27.Ian Lance Taylor1-0/+1
From-SVN: r183810
2011-12-07libgo: Update to weekly 2011-11-09.Ian Lance Taylor1-0/+18
From-SVN: r182073