1
0
mirror of https://github.com/golang/go synced 2024-10-04 06:11:21 -06:00

runtime: fix 386, arm build

CL 68150047 lost runtime.panicdivide.

TBR=dfc
CC=golang-codereviews
https://golang.org/cl/68610043
This commit is contained in:
Russ Cox 2014-02-25 11:31:09 -05:00
parent 441c4bb939
commit 5b35dc0f6f

View File

@ -487,3 +487,9 @@ runtime·Goexit(void)
rundefer();
runtime·goexit();
}
void
runtime·panicdivide(void)
{
runtime·panicstring("integer divide by zero");
}