1. 18 Oct, 2010 8 commits
  2. 17 Oct, 2010 4 commits
  3. 16 Oct, 2010 2 commits
  4. 15 Oct, 2010 10 commits
  5. 14 Oct, 2010 10 commits
  6. 13 Oct, 2010 6 commits
    • Russ Cox's avatar
      arm: enable 8 more packages · d6df3017
      Russ Cox authored
      The remaining failures include:
      
      * something about bit operations?
      	crypto/block
      	encoding/binary
      
      * something about file I/O?
      	archive/tar
      	archive/zip
      	debug/dwarf
      	debug/elf
      	debug/macho
      	image/png
      
      * floating point
      	cmath
      	expvar
      	flag
      	fmt
      	gob
      	json
      	math
      	strconv
      	template
      	xml
      
      * network (maybe fixed by a pending CL)
      	http
      	netchan
      	rpc
      	rpc/jsonrpc
      	syslog
      	websocket
      
      * line numbers
      	log
      
      * haven't bothered / not sure
      	exp/datafmt
      	exp/eval
      	go/printer
      	os
      	os/signal
      	testing/quick
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/2496041
      d6df3017
    • Ken Thompson's avatar
      fix arm bug in reflect.call · b33f5d53
      Ken Thompson authored
      R=rsc
      CC=golang-dev
      https://golang.org/cl/2475042
      b33f5d53
    • Russ Cox's avatar
      various: avoid %ld etc · d9c989fa
      Russ Cox authored
      The Plan 9 tools assume that long is 32 bits.
      We converted all instances of long to int32 when
      importing the code but missed the print formats.
      Because int32 is always int on the compilers we use,
      it is never correct to use %lux, %ld, etc.  Convert to %ux, %d, etc.
      
      (It matters because on 64-bit gcc, long is 64 bits,
      so we were printing 32-bit quantities with 64-bit formats.)
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/2491041
      d9c989fa
    • Russ Cox's avatar
      5l, 6l, 8l: first pass cleanup · 085be174
      Russ Cox authored
      * Maintain Sym* list for text with individual
        prog lists instead of using one huge list and
        overloading p->pcond.
      * Comment what each file is for.
      * Move some output code from span.c to asm.c.
      * Move profiling into prof.c, symbol table into symtab.c.
      * Move mkfwd to ld/lib.c.
      * Throw away dhog dynamic loading code.
      * Throw away Alef become.
      * Fix printing of WORD instructions in 5l -a.
      
      Goal here is to be able to handle each piece of text or data
      as a separate piece, both to make it easier to load the
      occasional .o file and also to make it possible to split the
      work across multiple threads.
      
      R=ken2, r, ken3
      CC=golang-dev
      https://golang.org/cl/2335043
      085be174
    • Russ Cox's avatar
      5l, 6l, 8l: indent, outdent · d4290311
      Russ Cox authored
      This is entirely adding and removing tabs.
      It looks weird but will make the diffs for the
      next change easier to read.
      
      R=ken2
      CC=golang-dev
      https://golang.org/cl/2490041
      d4290311
    • Rob Pike's avatar
      log: fix out-of-date package comment · dd8afb80
      Rob Pike authored
      R=rsc
      CC=golang-dev
      https://golang.org/cl/2485041
      dd8afb80