- 06 Jan, 2010 11 commits
-
-
Devon H. O'Dell authored
QUOTED_GOBIN. Re-take of 181077; fixes copy-pasta that broke build. Fixes #468 R=rsc CC=golang-dev https://golang.org/cl/183125
-
Ivan Krasin authored
R=rsc, imkrasin CC=golang-dev https://golang.org/cl/179126
-
Ivan Krasin authored
R=rsc, imkrasin CC=golang-dev https://golang.org/cl/179125
-
Russ Cox authored
R=r https://golang.org/cl/183124
-
Russ Cox authored
R=r CC=golang-dev https://golang.org/cl/183123
-
Evan Shaw authored
Fixes #447 R=rsc CC=golang-dev https://golang.org/cl/183047
-
-
Evan Shaw authored
R=rsc CC=golang-dev https://golang.org/cl/181138
-
Austin Clements authored
Fixes #415. R=rsc CC=golang-dev https://golang.org/cl/183104
-
Russ Cox authored
(changes adopted from alc, agl) R=agl1, agl CC=golang-dev https://golang.org/cl/181137
-
Devon H. O'Dell authored
Fixes #468 R=rsc CC=golang-dev https://golang.org/cl/181077
-
- 05 Jan, 2010 5 commits
-
-
Devon H. O'Dell authored
Fixes #461 R=rsc CC=golang-dev https://golang.org/cl/181059
-
Roger Peppe authored
R=rsc CC=golang-dev https://golang.org/cl/181135
-
Robert Griesemer authored
R=rsc, r CC=golang-dev https://golang.org/cl/183113
-
Robert Griesemer authored
R=rsc, r CC=golang-dev, rog https://golang.org/cl/183116
-
Rob Pike authored
R=rsc CC=golang-dev, jack.palevich https://golang.org/cl/183109
-
- 04 Jan, 2010 1 commit
-
-
Roger Peppe authored
Allow Walk of []Decl R=gri CC=golang-dev, rsc https://golang.org/cl/183112
-
- 03 Jan, 2010 1 commit
-
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/183107
-
- 02 Jan, 2010 1 commit
-
-
Yongjian Xu authored
Remove redundant size check in resize. Let callers worry about that and resize should just do "resize". R=golang-dev, r CC=golang-dev https://golang.org/cl/181111
-
- 31 Dec, 2009 1 commit
-
-
Rob Pike authored
modify a test to verify the fix. R=rsc CC=golang-dev https://golang.org/cl/183090
-
- 30 Dec, 2009 1 commit
-
-
Robert Griesemer authored
Recognize special comments starting with TODO or BUG. R=r CC=golang-dev https://golang.org/cl/183095
-
- 29 Dec, 2009 13 commits
-
-
Ian Lance Taylor authored
This provides full support for discontiguous stacks. R=r CC=golang-dev https://golang.org/cl/183088
-
Robert Griesemer authored
R=iant CC=golang-dev https://golang.org/cl/183087
-
Ken Friedenbach authored
Added definition for raw string. Added definitions for function and method declarations. Enabled function, method, and type declarations to appear in Editor pop up menu. Fixes #466. R=golang-dev, gri CC=golang-dev https://golang.org/cl/183065
-
Robert Griesemer authored
R=iant CC=golang-dev https://golang.org/cl/181099
-
Robert Griesemer authored
R=iant CC=golang-dev https://golang.org/cl/183084
-
Rob Pike authored
R=rsc CC=golang-dev https://golang.org/cl/181089
-
Robert Griesemer authored
R=agl, agl1 CC=golang-dev https://golang.org/cl/183083
-
Nigel Tao authored
Fixes #439. R=r CC=golang-dev https://golang.org/cl/181087
-
Nigel Tao authored
R=r CC=golang-dev https://golang.org/cl/181075
-
Rob Pike authored
used only for debugging, debug.go is not normally part of the package source. also add a dump program to call it. R=rsc CC=golang-dev https://golang.org/cl/183075
-
Rob Pike authored
Fixes #470. R=rsc CC=golang-dev https://golang.org/cl/183074
-
Robert Griesemer authored
tabs after an empty line where not converted. Also, made it more robust in the presence of (unexpected) ' ' and '\v' chars in indentation mode. R=r CC=golang-dev https://golang.org/cl/181085
-
Robert Griesemer authored
Use uint index variables in some cases instead of int to enable strength reduction; this makes it possible for the compiler to reduce % into masks. Old code: 6g -S md4.go md4block.go | grep "md4block.go:44" 0471 (md4block.go:44) MOVL AX,BX 0472 (md4block.go:44) MOVL AX,BP 0473 (md4block.go:44) MOVL AX,R8 0474 (md4block.go:44) SARL $31,R8 0475 (md4block.go:44) SHRL $30,R8 0476 (md4block.go:44) ADDL R8,BP 0477 (md4block.go:44) SARL $2,BP 0478 (md4block.go:44) IMULL $4,BP 0479 (md4block.go:44) SUBL BP,BX 0480 (md4block.go:44) MOVLQSX BX,BX 0481 (md4block.go:44) LEAQ shift1+0(SB),BP 0482 (md4block.go:44) CMPL BX,8(BP) 0483 (md4block.go:44) JCS ,485 0484 (md4block.go:44) CALL ,runtime.throwindex+0(SB) 0485 (md4block.go:44) MOVQ (BP),BP 0486 (md4block.go:44) MOVL (BP)(BX*4),DI New code: 6g -S md4.go md4block.go | grep "md4block.go:44" 0471 (md4block.go:44) MOVL AX,BX 0472 (md4block.go:44) ANDL $3,BX 0473 (md4block.go:44) MOVLQZX BX,BX 0474 (md4block.go:44) LEAQ shift1+0(SB),BP 0475 (md4block.go:44) CMPL BX,8(BP) 0476 (md4block.go:44) JCS ,478 0477 (md4block.go:44) CALL ,runtime.throwindex+0(SB) 0478 (md4block.go:44) MOVQ (BP),BP 0479 (md4block.go:44) MOVL (BP)(BX*4),DI R=agl, agl1 CC=golang-dev https://golang.org/cl/181086
-
- 28 Dec, 2009 5 commits
-
-
Robert Griesemer authored
(I was looking at this code accidentally because of some gofmt issues and thought that one could write this more effectively. You may have deliberately chosen not to use ranges here to make the index range clearer. Just let me know.) R=agl, agl1 CC=golang-dev https://golang.org/cl/181084
-
Robert Griesemer authored
Fixes #457. R=r CC=golang-dev https://golang.org/cl/181083
-
Rob Pike authored
Fixes #459. R=rsc, imkrasin, sonia CC=golang-dev https://golang.org/cl/181073
-
Robert Griesemer authored
R=agl, agl1 CC=golang-dev https://golang.org/cl/181080
-
Adam Langley authored
Listener contains private members and 6g now enforces that private members cannot be assigned outside of their package. R=rsc CC=golang-dev https://golang.org/cl/183073
-
- 27 Dec, 2009 1 commit
-
-
Russ Cox authored
reported by erik quanstrom. R=ken2 https://golang.org/cl/181071
-