summaryrefslogtreecommitdiff
path: root/src/pkg/bignum/nrdiv_test.go
AgeCommit message (Collapse)AuthorFilesLines
2010-05-21bignum: deprecate by moving into exp directoryRobert Griesemer1-188/+0
R=rsc CC=golang-dev http://codereview.appspot.com/1211047
2009-12-15 1) Change default gofmt default settings forRobert Griesemer1-50/+50
parsing and printing to new syntax. Use -oldparser to parse the old syntax, use -oldprinter to print the old syntax. 2) Change default gofmt formatting settings to use tabs for indentation only and to use spaces for alignment. This will make the code alignment insensitive to an editor's tabwidth. Use -spaces=false to use tabs for alignment. 3) Manually changed src/exp/parser/parser_test.go so that it doesn't try to parse the parser's source files using the old syntax (they have new syntax now). 4) gofmt -w src misc test/bench 1st set of files. R=rsc CC=agl, golang-dev, iant, ken2, r http://codereview.appspot.com/180047
2009-11-09- replaced gofmt expression formatting algorithm withRobert Griesemer1-3/+3
rsc's algorithm - applied gofmt -w misc src - partial CL (remaining files in other CLs) R=rsc, r http://go/go-review/1024040
2009-11-09remove semis after statements in one-statement statement listsRobert Griesemer1-11/+11
R=rsc, r http://go/go-review/1025029
2009-11-06- fine-tuning of one-line func heuristic (nodes.go)Robert Griesemer1-9/+3
- enabled for function declarations (not just function literals) - applied gofmt -w $GOROOT/src (look for instance at src/pkg/debug/elf/elf.go) R=r, rsc CC=go-dev http://go/go-review/1026006
2009-10-27files that are okay from the last gofmt roundRuss Cox1-1/+1
R=gri http://go/go-review/1015011
2009-10-08more lgtm files from gofmtRuss Cox1-2/+2
R=gri OCL=35485 CL=35488
2009-10-06another round of gofmt applicationsRuss Cox1-8/+10
R=gri DELTA=900 (106 added, 31 deleted, 763 changed) OCL=35384 CL=35396
2009-08-26added Newton-Raphson Division as an additional bignum testcaseRobert Griesemer1-0/+192
R=rsc DELTA=192 (192 added, 0 deleted, 0 changed) OCL=33853 CL=33864