r155391 - in /branches/gccgo/libgo: MERGE Makef...

ian@gcc.gnu.org ian@gcc.gnu.org
Tue Dec 22 05:56:00 GMT 2009


Author: ian
Date: Tue Dec 22 05:56:33 2009
New Revision: 155391

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=155391
Log:
Update to current library sources.  This uses the new semicolon
handling and implements signal handling.

Added:
    branches/gccgo/libgo/go/crypto/sha256/
    branches/gccgo/libgo/go/crypto/sha256/sha256.go
    branches/gccgo/libgo/go/crypto/sha256/sha256_test.go
    branches/gccgo/libgo/go/crypto/sha256/sha256block.go
    branches/gccgo/libgo/go/crypto/xtea/
    branches/gccgo/libgo/go/crypto/xtea/block.go
    branches/gccgo/libgo/go/crypto/xtea/cipher.go
    branches/gccgo/libgo/go/crypto/xtea/xtea_test.go
    branches/gccgo/libgo/go/exp/parser/
    branches/gccgo/libgo/go/exp/parser/interface.go
    branches/gccgo/libgo/go/exp/parser/parser.go
    branches/gccgo/libgo/go/exp/parser/parser_test.go
    branches/gccgo/libgo/go/image/jpeg/
    branches/gccgo/libgo/go/image/jpeg/huffman.go
    branches/gccgo/libgo/go/image/jpeg/idct.go
    branches/gccgo/libgo/go/image/jpeg/reader.go
    branches/gccgo/libgo/go/os/signal/
    branches/gccgo/libgo/go/os/signal/signal.go
    branches/gccgo/libgo/go/os/signal/signal_test.go
    branches/gccgo/libgo/go/patch/
    branches/gccgo/libgo/go/patch/apply.go
    branches/gccgo/libgo/go/patch/git.go
    branches/gccgo/libgo/go/patch/patch.go
    branches/gccgo/libgo/go/patch/patch_test.go
    branches/gccgo/libgo/go/patch/textdiff.go
    branches/gccgo/libgo/go/rand/zipf.go
    branches/gccgo/libgo/go/syslog/
    branches/gccgo/libgo/go/syslog/syslog.go
    branches/gccgo/libgo/go/syslog/syslog_test.go
    branches/gccgo/libgo/runtime/defs.h
    branches/gccgo/libgo/runtime/go-note.c
    branches/gccgo/libgo/runtime/go-signal.c
    branches/gccgo/libgo/runtime/go-signal.h
    branches/gccgo/libgo/runtime/sigqueue.cgo
Modified:
    branches/gccgo/libgo/MERGE
    branches/gccgo/libgo/Makefile.am
    branches/gccgo/libgo/Makefile.in
    branches/gccgo/libgo/go/archive/tar/common.go
    branches/gccgo/libgo/go/archive/tar/reader.go
    branches/gccgo/libgo/go/archive/tar/reader_test.go
    branches/gccgo/libgo/go/archive/tar/writer.go
    branches/gccgo/libgo/go/archive/tar/writer_test.go
    branches/gccgo/libgo/go/asn1/asn1.go
    branches/gccgo/libgo/go/asn1/asn1_test.go
    branches/gccgo/libgo/go/asn1/common.go
    branches/gccgo/libgo/go/asn1/marshal.go
    branches/gccgo/libgo/go/asn1/marshal_test.go
    branches/gccgo/libgo/go/big/arith.go
    branches/gccgo/libgo/go/big/arith_test.go
    branches/gccgo/libgo/go/big/int.go
    branches/gccgo/libgo/go/big/int_test.go
    branches/gccgo/libgo/go/big/nat.go
    branches/gccgo/libgo/go/big/nat_test.go
    branches/gccgo/libgo/go/bignum/arith.go
    branches/gccgo/libgo/go/bignum/bignum.go
    branches/gccgo/libgo/go/bignum/bignum_test.go
    branches/gccgo/libgo/go/bignum/integer.go
    branches/gccgo/libgo/go/bignum/nrdiv_test.go
    branches/gccgo/libgo/go/bignum/rational.go
    branches/gccgo/libgo/go/bufio/bufio.go
    branches/gccgo/libgo/go/bufio/bufio_test.go
    branches/gccgo/libgo/go/bytes/buffer.go
    branches/gccgo/libgo/go/bytes/buffer_test.go
    branches/gccgo/libgo/go/bytes/bytes.go
    branches/gccgo/libgo/go/bytes/bytes_test.go
    branches/gccgo/libgo/go/compress/flate/deflate.go
    branches/gccgo/libgo/go/compress/flate/deflate_test.go
    branches/gccgo/libgo/go/compress/flate/flate_test.go
    branches/gccgo/libgo/go/compress/flate/huffman_bit_writer.go
    branches/gccgo/libgo/go/compress/flate/huffman_code.go
    branches/gccgo/libgo/go/compress/flate/inflate.go
    branches/gccgo/libgo/go/compress/flate/token.go
    branches/gccgo/libgo/go/compress/flate/util.go
    branches/gccgo/libgo/go/compress/gzip/gunzip.go
    branches/gccgo/libgo/go/compress/gzip/gunzip_test.go
    branches/gccgo/libgo/go/compress/zlib/reader.go
    branches/gccgo/libgo/go/compress/zlib/reader_test.go
    branches/gccgo/libgo/go/compress/zlib/writer.go
    branches/gccgo/libgo/go/compress/zlib/writer_test.go
    branches/gccgo/libgo/go/container/heap/heap.go
    branches/gccgo/libgo/go/container/heap/heap_test.go
    branches/gccgo/libgo/go/container/list/list.go
    branches/gccgo/libgo/go/container/list/list_test.go
    branches/gccgo/libgo/go/container/ring/ring.go
    branches/gccgo/libgo/go/container/ring/ring_test.go
    branches/gccgo/libgo/go/container/vector/intvector.go
    branches/gccgo/libgo/go/container/vector/stringvector.go
    branches/gccgo/libgo/go/container/vector/vector.go
    branches/gccgo/libgo/go/container/vector/vector_test.go
    branches/gccgo/libgo/go/crypto/aes/aes_test.go
    branches/gccgo/libgo/go/crypto/aes/block.go
    branches/gccgo/libgo/go/crypto/aes/cipher.go
    branches/gccgo/libgo/go/crypto/aes/const.go
    branches/gccgo/libgo/go/crypto/block/cbc.go
    branches/gccgo/libgo/go/crypto/block/cbc_aes_test.go
    branches/gccgo/libgo/go/crypto/block/cfb.go
    branches/gccgo/libgo/go/crypto/block/cfb_aes_test.go
    branches/gccgo/libgo/go/crypto/block/cipher.go
    branches/gccgo/libgo/go/crypto/block/cmac.go
    branches/gccgo/libgo/go/crypto/block/cmac_aes_test.go
    branches/gccgo/libgo/go/crypto/block/ctr.go
    branches/gccgo/libgo/go/crypto/block/ctr_aes_test.go
    branches/gccgo/libgo/go/crypto/block/eax.go
    branches/gccgo/libgo/go/crypto/block/eax_aes_test.go
    branches/gccgo/libgo/go/crypto/block/ecb.go
    branches/gccgo/libgo/go/crypto/block/ecb_aes_test.go
    branches/gccgo/libgo/go/crypto/block/ecb_test.go
    branches/gccgo/libgo/go/crypto/block/ofb.go
    branches/gccgo/libgo/go/crypto/block/ofb_aes_test.go
    branches/gccgo/libgo/go/crypto/block/xor.go
    branches/gccgo/libgo/go/crypto/block/xor_test.go
    branches/gccgo/libgo/go/crypto/hmac/hmac.go
    branches/gccgo/libgo/go/crypto/hmac/hmac_test.go
    branches/gccgo/libgo/go/crypto/md4/md4.go
    branches/gccgo/libgo/go/crypto/md4/md4_test.go
    branches/gccgo/libgo/go/crypto/md4/md4block.go
    branches/gccgo/libgo/go/crypto/md5/md5.go
    branches/gccgo/libgo/go/crypto/md5/md5_test.go
    branches/gccgo/libgo/go/crypto/md5/md5block.go
    branches/gccgo/libgo/go/crypto/rc4/rc4.go
    branches/gccgo/libgo/go/crypto/rc4/rc4_test.go
    branches/gccgo/libgo/go/crypto/rsa/pkcs1v15.go
    branches/gccgo/libgo/go/crypto/rsa/pkcs1v15_test.go
    branches/gccgo/libgo/go/crypto/rsa/rsa.go
    branches/gccgo/libgo/go/crypto/rsa/rsa_test.go
    branches/gccgo/libgo/go/crypto/sha1/sha1.go
    branches/gccgo/libgo/go/crypto/sha1/sha1_test.go
    branches/gccgo/libgo/go/crypto/sha1/sha1block.go
    branches/gccgo/libgo/go/crypto/subtle/constant_time.go
    branches/gccgo/libgo/go/crypto/subtle/constant_time_test.go
    branches/gccgo/libgo/go/crypto/tls/alert.go
    branches/gccgo/libgo/go/crypto/tls/ca_set.go
    branches/gccgo/libgo/go/crypto/tls/common.go
    branches/gccgo/libgo/go/crypto/tls/handshake_client.go
    branches/gccgo/libgo/go/crypto/tls/handshake_messages.go
    branches/gccgo/libgo/go/crypto/tls/handshake_messages_test.go
    branches/gccgo/libgo/go/crypto/tls/handshake_server.go
    branches/gccgo/libgo/go/crypto/tls/handshake_server_test.go
    branches/gccgo/libgo/go/crypto/tls/prf.go
    branches/gccgo/libgo/go/crypto/tls/prf_test.go
    branches/gccgo/libgo/go/crypto/tls/record_process.go
    branches/gccgo/libgo/go/crypto/tls/record_process_test.go
    branches/gccgo/libgo/go/crypto/tls/record_read.go
    branches/gccgo/libgo/go/crypto/tls/record_read_test.go
    branches/gccgo/libgo/go/crypto/tls/record_write.go
    branches/gccgo/libgo/go/crypto/tls/tls.go
    branches/gccgo/libgo/go/crypto/x509/x509.go
    branches/gccgo/libgo/go/crypto/x509/x509_test.go
    branches/gccgo/libgo/go/debug/dwarf/buf.go
    branches/gccgo/libgo/go/debug/dwarf/const.go
    branches/gccgo/libgo/go/debug/dwarf/entry.go
    branches/gccgo/libgo/go/debug/dwarf/open.go
    branches/gccgo/libgo/go/debug/dwarf/type.go
    branches/gccgo/libgo/go/debug/dwarf/type_test.go
    branches/gccgo/libgo/go/debug/dwarf/unit.go
    branches/gccgo/libgo/go/debug/elf/elf.go
    branches/gccgo/libgo/go/debug/elf/elf_test.go
    branches/gccgo/libgo/go/debug/elf/file.go
    branches/gccgo/libgo/go/debug/elf/file_test.go
    branches/gccgo/libgo/go/debug/gosym/pclntab.go
    branches/gccgo/libgo/go/debug/gosym/pclntab_test.go
    branches/gccgo/libgo/go/debug/gosym/symtab.go
    branches/gccgo/libgo/go/debug/macho/file.go
    branches/gccgo/libgo/go/debug/macho/file_test.go
    branches/gccgo/libgo/go/debug/macho/macho.go
    branches/gccgo/libgo/go/debug/proc/proc.go
    branches/gccgo/libgo/go/debug/proc/proc_linux.go
    branches/gccgo/libgo/go/debug/proc/proc_nacl.go
    branches/gccgo/libgo/go/debug/proc/regs_linux_386.go
    branches/gccgo/libgo/go/debug/proc/regs_linux_amd64.go
    branches/gccgo/libgo/go/debug/proc/regs_linux_arm.go
    branches/gccgo/libgo/go/ebnf/ebnf.go
    branches/gccgo/libgo/go/ebnf/ebnf_test.go
    branches/gccgo/libgo/go/ebnf/parser.go
    branches/gccgo/libgo/go/encoding/ascii85/ascii85.go
    branches/gccgo/libgo/go/encoding/ascii85/ascii85_test.go
    branches/gccgo/libgo/go/encoding/base64/base64.go
    branches/gccgo/libgo/go/encoding/base64/base64_test.go
    branches/gccgo/libgo/go/encoding/binary/binary.go
    branches/gccgo/libgo/go/encoding/binary/binary_test.go
    branches/gccgo/libgo/go/encoding/git85/git.go
    branches/gccgo/libgo/go/encoding/git85/git_test.go
    branches/gccgo/libgo/go/encoding/hex/hex.go
    branches/gccgo/libgo/go/encoding/hex/hex_test.go
    branches/gccgo/libgo/go/encoding/pem/pem.go
    branches/gccgo/libgo/go/encoding/pem/pem_test.go
    branches/gccgo/libgo/go/exec/exec.go
    branches/gccgo/libgo/go/exec/exec_test.go
    branches/gccgo/libgo/go/exp/4s/4s.go
    branches/gccgo/libgo/go/exp/4s/5s.go
    branches/gccgo/libgo/go/exp/4s/xs.go
    branches/gccgo/libgo/go/exp/datafmt/datafmt.go
    branches/gccgo/libgo/go/exp/datafmt/datafmt_test.go
    branches/gccgo/libgo/go/exp/datafmt/parser.go
    branches/gccgo/libgo/go/exp/draw/arith.go
    branches/gccgo/libgo/go/exp/draw/color.go
    branches/gccgo/libgo/go/exp/draw/draw.go
    branches/gccgo/libgo/go/exp/draw/event.go
    branches/gccgo/libgo/go/exp/draw/x11/auth.go
    branches/gccgo/libgo/go/exp/draw/x11/conn.go
    branches/gccgo/libgo/go/exp/eval/abort.go
    branches/gccgo/libgo/go/exp/eval/bridge.go
    branches/gccgo/libgo/go/exp/eval/compiler.go
    branches/gccgo/libgo/go/exp/eval/eval_test.go
    branches/gccgo/libgo/go/exp/eval/expr.go
    branches/gccgo/libgo/go/exp/eval/expr1.go
    branches/gccgo/libgo/go/exp/eval/expr_test.go
    branches/gccgo/libgo/go/exp/eval/func.go
    branches/gccgo/libgo/go/exp/eval/scope.go
    branches/gccgo/libgo/go/exp/eval/stmt.go
    branches/gccgo/libgo/go/exp/eval/stmt_test.go
    branches/gccgo/libgo/go/exp/eval/type.go
    branches/gccgo/libgo/go/exp/eval/typec.go
    branches/gccgo/libgo/go/exp/eval/util.go
    branches/gccgo/libgo/go/exp/eval/value.go
    branches/gccgo/libgo/go/exp/eval/world.go
    branches/gccgo/libgo/go/exp/exception/exception.go
    branches/gccgo/libgo/go/exp/exception/exception_test.go
    branches/gccgo/libgo/go/exp/iterable/array.go
    branches/gccgo/libgo/go/exp/iterable/iterable.go
    branches/gccgo/libgo/go/exp/iterable/iterable_test.go
    branches/gccgo/libgo/go/exp/nacl/av/av.go
    branches/gccgo/libgo/go/exp/nacl/av/event.go
    branches/gccgo/libgo/go/exp/nacl/av/image.go
    branches/gccgo/libgo/go/exp/nacl/srpc/client.go
    branches/gccgo/libgo/go/exp/nacl/srpc/msg.go
    branches/gccgo/libgo/go/exp/nacl/srpc/server.go
    branches/gccgo/libgo/go/exp/ogle/abort.go
    branches/gccgo/libgo/go/exp/ogle/arch.go
    branches/gccgo/libgo/go/exp/ogle/cmd.go
    branches/gccgo/libgo/go/exp/ogle/event.go
    branches/gccgo/libgo/go/exp/ogle/frame.go
    branches/gccgo/libgo/go/exp/ogle/goroutine.go
    branches/gccgo/libgo/go/exp/ogle/main.go
    branches/gccgo/libgo/go/exp/ogle/process.go
    branches/gccgo/libgo/go/exp/ogle/rruntime.go
    branches/gccgo/libgo/go/exp/ogle/rtype.go
    branches/gccgo/libgo/go/exp/ogle/rvalue.go
    branches/gccgo/libgo/go/exp/ogle/vars.go
    branches/gccgo/libgo/go/exp/spacewar/pdp1.go
    branches/gccgo/libgo/go/exp/spacewar/spacewar.go
    branches/gccgo/libgo/go/expvar/expvar.go
    branches/gccgo/libgo/go/expvar/expvar_test.go
    branches/gccgo/libgo/go/flag/flag.go
    branches/gccgo/libgo/go/flag/flag_test.go
    branches/gccgo/libgo/go/fmt/fmt_test.go
    branches/gccgo/libgo/go/fmt/format.go
    branches/gccgo/libgo/go/fmt/print.go
    branches/gccgo/libgo/go/go/ast/ast.go
    branches/gccgo/libgo/go/go/ast/filter.go
    branches/gccgo/libgo/go/go/ast/scope.go
    branches/gccgo/libgo/go/go/ast/walk.go
    branches/gccgo/libgo/go/go/doc/comment.go
    branches/gccgo/libgo/go/go/doc/doc.go
    branches/gccgo/libgo/go/go/parser/interface.go
    branches/gccgo/libgo/go/go/parser/parser.go
    branches/gccgo/libgo/go/go/parser/parser_test.go
    branches/gccgo/libgo/go/go/printer/nodes.go
    branches/gccgo/libgo/go/go/printer/printer.go
    branches/gccgo/libgo/go/go/printer/printer_test.go
    branches/gccgo/libgo/go/go/printer/testdata/declarations.golden
    branches/gccgo/libgo/go/go/printer/testdata/declarations.input
    branches/gccgo/libgo/go/go/printer/testdata/expressions.golden
    branches/gccgo/libgo/go/go/printer/testdata/expressions.input
    branches/gccgo/libgo/go/go/printer/testdata/expressions.raw
    branches/gccgo/libgo/go/go/printer/testdata/linebreaks.golden
    branches/gccgo/libgo/go/go/printer/testdata/linebreaks.input
    branches/gccgo/libgo/go/go/scanner/errors.go
    branches/gccgo/libgo/go/go/scanner/scanner.go
    branches/gccgo/libgo/go/go/scanner/scanner_test.go
    branches/gccgo/libgo/go/go/token/token.go
    branches/gccgo/libgo/go/gob/codec_test.go
    branches/gccgo/libgo/go/gob/decode.go
    branches/gccgo/libgo/go/gob/decoder.go
    branches/gccgo/libgo/go/gob/encode.go
    branches/gccgo/libgo/go/gob/encoder.go
    branches/gccgo/libgo/go/gob/encoder_test.go
    branches/gccgo/libgo/go/gob/type.go
    branches/gccgo/libgo/go/gob/type_test.go
    branches/gccgo/libgo/go/hash/adler32/adler32.go
    branches/gccgo/libgo/go/hash/adler32/adler32_test.go
    branches/gccgo/libgo/go/hash/crc32/crc32.go
    branches/gccgo/libgo/go/hash/crc32/crc32_test.go
    branches/gccgo/libgo/go/hash/hash.go
    branches/gccgo/libgo/go/http/client.go
    branches/gccgo/libgo/go/http/client_test.go
    branches/gccgo/libgo/go/http/fs.go
    branches/gccgo/libgo/go/http/request.go
    branches/gccgo/libgo/go/http/request_test.go
    branches/gccgo/libgo/go/http/server.go
    branches/gccgo/libgo/go/http/status.go
    branches/gccgo/libgo/go/http/url.go
    branches/gccgo/libgo/go/http/url_test.go
    branches/gccgo/libgo/go/image/color.go
    branches/gccgo/libgo/go/image/image.go
    branches/gccgo/libgo/go/image/png/reader.go
    branches/gccgo/libgo/go/image/png/reader_test.go
    branches/gccgo/libgo/go/image/png/writer.go
    branches/gccgo/libgo/go/image/png/writer_test.go
    branches/gccgo/libgo/go/io/io.go
    branches/gccgo/libgo/go/io/io_test.go
    branches/gccgo/libgo/go/io/ioutil/ioutil.go
    branches/gccgo/libgo/go/io/ioutil/ioutil_test.go
    branches/gccgo/libgo/go/io/pipe.go
    branches/gccgo/libgo/go/io/pipe_test.go
    branches/gccgo/libgo/go/json/decode.go
    branches/gccgo/libgo/go/json/decode_test.go
    branches/gccgo/libgo/go/json/error.go
    branches/gccgo/libgo/go/json/parse.go
    branches/gccgo/libgo/go/json/struct.go
    branches/gccgo/libgo/go/json/struct_test.go
    branches/gccgo/libgo/go/log/log.go
    branches/gccgo/libgo/go/log/log_test.go
    branches/gccgo/libgo/go/malloc/malloc.go
    branches/gccgo/libgo/go/math/all_test.go
    branches/gccgo/libgo/go/math/asin.go
    branches/gccgo/libgo/go/math/atan.go
    branches/gccgo/libgo/go/math/atan2.go
    branches/gccgo/libgo/go/math/bits.go
    branches/gccgo/libgo/go/math/const.go
    branches/gccgo/libgo/go/math/exp.go
    branches/gccgo/libgo/go/math/fabs.go
    branches/gccgo/libgo/go/math/floor.go
    branches/gccgo/libgo/go/math/fmod.go
    branches/gccgo/libgo/go/math/hypot.go
    branches/gccgo/libgo/go/math/log.go
    branches/gccgo/libgo/go/math/pow.go
    branches/gccgo/libgo/go/math/pow10.go
    branches/gccgo/libgo/go/math/sin.go
    branches/gccgo/libgo/go/math/sinh.go
    branches/gccgo/libgo/go/math/sqrt.go
    branches/gccgo/libgo/go/math/tan.go
    branches/gccgo/libgo/go/math/tanh.go
    branches/gccgo/libgo/go/math/unsafe.go
    branches/gccgo/libgo/go/net/dialgoogle_test.go
    branches/gccgo/libgo/go/net/dnsclient.go
    branches/gccgo/libgo/go/net/dnsconfig.go
    branches/gccgo/libgo/go/net/dnsmsg.go
    branches/gccgo/libgo/go/net/fd.go
    branches/gccgo/libgo/go/net/fd_linux.go
    branches/gccgo/libgo/go/net/ip.go
    branches/gccgo/libgo/go/net/ip_test.go
    branches/gccgo/libgo/go/net/ipsock.go
    branches/gccgo/libgo/go/net/net.go
    branches/gccgo/libgo/go/net/net_test.go
    branches/gccgo/libgo/go/net/parse.go
    branches/gccgo/libgo/go/net/parse_test.go
    branches/gccgo/libgo/go/net/port.go
    branches/gccgo/libgo/go/net/port_test.go
    branches/gccgo/libgo/go/net/server_test.go
    branches/gccgo/libgo/go/net/sock.go
    branches/gccgo/libgo/go/net/tcpsock.go
    branches/gccgo/libgo/go/net/timeout_test.go
    branches/gccgo/libgo/go/net/udpsock.go
    branches/gccgo/libgo/go/net/unixsock.go
    branches/gccgo/libgo/go/once/once.go
    branches/gccgo/libgo/go/once/once_test.go
    branches/gccgo/libgo/go/os/dir.go
    branches/gccgo/libgo/go/os/env.go
    branches/gccgo/libgo/go/os/error.go
    branches/gccgo/libgo/go/os/exec.go
    branches/gccgo/libgo/go/os/file.go
    branches/gccgo/libgo/go/os/getwd.go
    branches/gccgo/libgo/go/os/os_test.go
    branches/gccgo/libgo/go/os/path.go
    branches/gccgo/libgo/go/os/path_test.go
    branches/gccgo/libgo/go/os/proc.go
    branches/gccgo/libgo/go/os/sys_linux.go
    branches/gccgo/libgo/go/os/time.go
    branches/gccgo/libgo/go/os/types.go
    branches/gccgo/libgo/go/path/path.go
    branches/gccgo/libgo/go/path/path_test.go
    branches/gccgo/libgo/go/rand/exp.go
    branches/gccgo/libgo/go/rand/normal.go
    branches/gccgo/libgo/go/rand/rand.go
    branches/gccgo/libgo/go/rand/rand_test.go
    branches/gccgo/libgo/go/rand/rng.go
    branches/gccgo/libgo/go/reflect/all_test.go
    branches/gccgo/libgo/go/reflect/deepequal.go
    branches/gccgo/libgo/go/reflect/tostring_test.go
    branches/gccgo/libgo/go/reflect/type.go
    branches/gccgo/libgo/go/reflect/value.go
    branches/gccgo/libgo/go/regexp/all_test.go
    branches/gccgo/libgo/go/regexp/regexp.go
    branches/gccgo/libgo/go/rpc/client.go
    branches/gccgo/libgo/go/rpc/debug.go
    branches/gccgo/libgo/go/rpc/server.go
    branches/gccgo/libgo/go/rpc/server_test.go
    branches/gccgo/libgo/go/runtime/extern.go
    branches/gccgo/libgo/go/runtime/type.go
    branches/gccgo/libgo/go/sort/sort.go
    branches/gccgo/libgo/go/sort/sort_test.go
    branches/gccgo/libgo/go/strconv/atof.go
    branches/gccgo/libgo/go/strconv/atof_test.go
    branches/gccgo/libgo/go/strconv/atoi.go
    branches/gccgo/libgo/go/strconv/atoi_test.go
    branches/gccgo/libgo/go/strconv/decimal.go
    branches/gccgo/libgo/go/strconv/decimal_test.go
    branches/gccgo/libgo/go/strconv/fp_test.go
    branches/gccgo/libgo/go/strconv/ftoa.go
    branches/gccgo/libgo/go/strconv/ftoa_test.go
    branches/gccgo/libgo/go/strconv/internal_test.go
    branches/gccgo/libgo/go/strconv/itoa.go
    branches/gccgo/libgo/go/strconv/itoa_test.go
    branches/gccgo/libgo/go/strconv/quote.go
    branches/gccgo/libgo/go/strconv/quote_test.go
    branches/gccgo/libgo/go/strings/reader.go
    branches/gccgo/libgo/go/strings/strings.go
    branches/gccgo/libgo/go/strings/strings_test.go
    branches/gccgo/libgo/go/sync/mutex.go
    branches/gccgo/libgo/go/sync/mutex_test.go
    branches/gccgo/libgo/go/sync/rwmutex.go
    branches/gccgo/libgo/go/sync/rwmutex_test.go
    branches/gccgo/libgo/go/tabwriter/tabwriter.go
    branches/gccgo/libgo/go/tabwriter/tabwriter_test.go
    branches/gccgo/libgo/go/template/format.go
    branches/gccgo/libgo/go/template/template.go
    branches/gccgo/libgo/go/template/template_test.go
    branches/gccgo/libgo/go/testing/benchmark.go
    branches/gccgo/libgo/go/testing/iotest/logger.go
    branches/gccgo/libgo/go/testing/iotest/reader.go
    branches/gccgo/libgo/go/testing/iotest/writer.go
    branches/gccgo/libgo/go/testing/quick/quick.go
    branches/gccgo/libgo/go/testing/quick/quick_test.go
    branches/gccgo/libgo/go/testing/regexp.go
    branches/gccgo/libgo/go/testing/regexp_test.go
    branches/gccgo/libgo/go/testing/script/script.go
    branches/gccgo/libgo/go/testing/script/script_test.go
    branches/gccgo/libgo/go/testing/testing.go
    branches/gccgo/libgo/go/time/sleep.go
    branches/gccgo/libgo/go/time/tick.go
    branches/gccgo/libgo/go/time/tick_test.go
    branches/gccgo/libgo/go/time/time.go
    branches/gccgo/libgo/go/time/time_test.go
    branches/gccgo/libgo/go/time/zoneinfo.go
    branches/gccgo/libgo/go/unicode/digit.go
    branches/gccgo/libgo/go/unicode/digit_test.go
    branches/gccgo/libgo/go/unicode/letter.go
    branches/gccgo/libgo/go/unicode/letter_test.go
    branches/gccgo/libgo/go/unicode/script_test.go
    branches/gccgo/libgo/go/unicode/tables.go
    branches/gccgo/libgo/go/utf8/utf8.go
    branches/gccgo/libgo/go/utf8/utf8_test.go
    branches/gccgo/libgo/go/websocket/client.go
    branches/gccgo/libgo/go/websocket/server.go
    branches/gccgo/libgo/go/websocket/websocket.go
    branches/gccgo/libgo/go/websocket/websocket_test.go
    branches/gccgo/libgo/go/xgb/xgb.go
    branches/gccgo/libgo/go/xgb/xproto.go
    branches/gccgo/libgo/go/xml/read.go
    branches/gccgo/libgo/go/xml/read_test.go
    branches/gccgo/libgo/go/xml/xml.go
    branches/gccgo/libgo/go/xml/xml_test.go
    branches/gccgo/libgo/merge.sh
    branches/gccgo/libgo/runtime/cgo2c.c
    branches/gccgo/libgo/runtime/go-main.c
    branches/gccgo/libgo/runtime/runtime.h
    branches/gccgo/libgo/syscalls/exec.go
    branches/gccgo/libgo/syscalls/socket.go
    branches/gccgo/libgo/syscalls/socket_epoll.go
    branches/gccgo/libgo/syscalls/syscall.go
    branches/gccgo/libgo/syscalls/syscall_linux.go



More information about the Gcc-cvs mailing list