An error occurred fetching the project authors.
- 28 Aug, 2014 1 commit
-
-
Russ Cox authored
uintptr or uint64 in the runtime C were turning into uint in the Go, bool was turning into uint8, and so on. Fix that. Also delete Go wrappers for C functions. The C functions can be called directly now (but still eventually need to be converted to Go). LGTM=bradfitz, minux, iant R=golang-codereviews, bradfitz, iant, minux CC=golang-codereviews, khr, r https://golang.org/cl/138740043
-
- 25 Aug, 2014 1 commit
-
-
Dmitriy Vyukov authored
LGTM=rsc R=golang-codereviews, rsc CC=golang-codereviews, khr https://golang.org/cl/126210046
-
- 10 Jan, 2014 1 commit
-
-
Rémy Oudompheng authored
Nodes of goto statements were corrupted when written to export data. Fixes #7023. R=rsc, dave, minux.ma CC=golang-codereviews https://golang.org/cl/46190043
-
- 03 Jan, 2014 1 commit
-
-
Daniel Morsing authored
Fixes #6406. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/46900043
-
- 17 Feb, 2012 1 commit
-
-
Russ Cox authored
X ,s;^// \$G (\$D/)?\$F\.go *$;// compile;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A *$;// build;g X ,s;^// \$G (\$D/)?\$F\.go && \$L \$F\.\$A && \./\$A\.out *$;// run;g X ,s;^// errchk \$G( -e)? (\$D/)?\$F\.go *$;// errorcheck;g R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5656082
-
- 19 Sep, 2008 1 commit
-
-
Ian Lance Taylor authored
permits testing that the compiler emits error messages for specific lines that match egrep regexps. The desired error messages are expressed using comments of the form // ERROR "regexp" R=r DELTA=90 (73 added, 8 deleted, 9 changed) OCL=15513 CL=15566
-
- 11 Aug, 2008 1 commit
-
-
Rob Pike authored
fixedbugs/bug012.go is broken again but i left it where it is, with the golden file not reflecting the breakage so it will be noticed R=ken,gri OCL=14073 CL=14073
-
- 06 Jun, 2008 1 commit
-
-
Rob Pike authored
SVN=121543
-
- 09 May, 2008 1 commit
-
-
Robert Griesemer authored
- fixed issued with function declarations/function literals - added more tests and fixed existing tests SVN=118167
-
- 26 Mar, 2008 1 commit
-
-
Robert Griesemer authored
SVN=113851
-
- 19 Mar, 2008 1 commit
-
-
Robert Griesemer authored
Semicolons are terminators for statements as in C, but if followed by a "}" they are not required. This is easy to understand and produces the desired result for statements. - Updated todo.txt. SVN=113198
-