| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
Reviewed-on: https://go-review.googlesource.com/25150
From-SVN: r238662
|
|
|
|
|
|
|
|
| |
It is not needed due to the removal of the ctx field.
Reviewed-on: https://go-review.googlesource.com/16525
From-SVN: r229616
|
|
|
|
| |
From-SVN: r221245
|
|
|
|
| |
From-SVN: r219976
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
|
|
|
|
|
|
|
|
| |
The new commands are not yet built. That will be done
separately.
Also include a few changes to go/build to support them.
From-SVN: r219272
|
|
|
|
| |
From-SVN: r212837
|
|
|
|
|
|
|
| |
This revision renames several files in the runtime directory
from .c to .goc.
From-SVN: r212472
|
|
|
|
|
|
|
| |
The next revision, 19185, renames several runtime files, and
will be handled in a separate change.
From-SVN: r211328
|
|
|
|
| |
From-SVN: r200974
|
|
|
|
| |
From-SVN: r194692
|
|
|
|
| |
From-SVN: r192704
|
|
|
|
| |
From-SVN: r187848
|
|
|
|
| |
From-SVN: r186026
|
|
|
|
| |
From-SVN: r184798
|
|
|
|
| |
From-SVN: r183150
|
|
|
|
| |
From-SVN: r182266
|
|
|
|
| |
From-SVN: r182073
|
|
|
|
| |
From-SVN: r181964
|
|
|
|
| |
From-SVN: r181937
|
|
|
|
| |
From-SVN: r180552
|
|
|
|
| |
From-SVN: r179076
|
|
|
|
| |
From-SVN: r178910
|
|
|
|
| |
From-SVN: r171427
|
|
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
|