aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/encoding/ascii85/ascii85.go
AgeCommit message (Collapse)AuthorFilesLines
2022-02-11libgo: update to Go1.18beta2Ian Lance Taylor1-3/+1
gotools/ * Makefile.am (go_cmd_cgo_files): Add ast_go118.go (check-go-tool): Copy golang.org/x/tools directories. * Makefile.in: Regenerate. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/384695
2016-07-22libgo: update to go1.7rc3Ian Lance Taylor1-3/+3
Reviewed-on: https://go-review.googlesource.com/25150 From-SVN: r238662
2015-01-15libgo, compiler: Upgrade libgo to Go 1.4, except for runtime.Ian Lance Taylor1-1/+0
This upgrades all of libgo other than the runtime package to the Go 1.4 release. In Go 1.4 much of the runtime was rewritten into Go. Merging that code will take more time and will not change the API, so I'm putting it off for now. There are a few runtime changes anyhow, to accomodate other packages that rely on minor modifications to the runtime support. The compiler changes slightly to add a one-bit flag to each type descriptor kind that is stored directly in an interface, which for gccgo is currently only pointer types. Another one-bit flag (gcprog) is reserved because it is used by the gc compiler, but gccgo does not currently use it. There is another error check in the compiler since I ran across it during testing. gotools/: * Makefile.am (go_cmd_go_files): Sort entries. Add generate.go. * Makefile.in: Rebuild. From-SVN: r219627
2014-07-19libgo: Update to Go 1.3 release.Ian Lance Taylor1-0/+12
From-SVN: r212837
2013-07-16libgo: Update to Go 1.1.1.Ian Lance Taylor1-1/+0
From-SVN: r200974
2012-05-04libgo: Update to Go 1.0.1 release.Ian Lance Taylor1-0/+1
From-SVN: r187163
2011-12-14libgo: Update to weekly.2011-12-06.Ian Lance Taylor1-1/+1
From-SVN: r182338
2011-12-03libgo: Update to weekly.2011-11-02.Ian Lance Taylor1-9/+8
From-SVN: r181964
2010-12-03Add Go frontend, libgo library, and Go testsuite.Ian Lance Taylor1-0/+300
gcc/: * gcc.c (default_compilers): Add entry for ".go". * common.opt: Add -static-libgo as a driver option. * doc/install.texi (Configuration): Mention libgo as an option for --enable-shared. Mention go as an option for --enable-languages. * doc/invoke.texi (Overall Options): Mention .go as a file name suffix. Mention go as a -x option. * doc/frontends.texi (G++ and GCC): Mention Go as a supported language. * doc/sourcebuild.texi (Top Level): Mention libgo. * doc/standards.texi (Standards): Add section on Go language. Move references for other languages into their own section. * doc/contrib.texi (Contributors): Mention that I contributed the Go frontend. gcc/testsuite/: * lib/go.exp: New file. * lib/go-dg.exp: New file. * lib/go-torture.exp: New file. * lib/target-supports.exp (check_compile): Match // Go. From-SVN: r167407