summaryrefslogtreecommitdiff
path: root/test/divmod.go
Commit message (Collapse)AuthorAgeFilesLines
* all: fix a few spelling errors in source commentsMartin Olsson2013-12-271-1/+1
| | | | | | | | R=golang-codereviews, dave, iant CC=golang-codereviews https://codereview.appspot.com/45750044 Committer: Ian Lance Taylor <iant@golang.org>
* runtime: make ARM integer div-by-zero traceback-friendlyRuss Cox2013-09-161-0/+460
The implementation of division in the 5 toolchain is a bit too magical. Hide the magic from the traceback routines. Also add a test for the results of the software divide routine. Fixes issue 5805. R=golang-dev, minux.ma CC=golang-dev https://codereview.appspot.com/13239052