From: Russ Cox Date: Tue, 25 Feb 2014 16:31:09 +0000 (-0500) Subject: runtime: fix 386, arm build X-Git-Tag: go1.3beta1~578 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5b35dc0f6f0ff0a96edd8f8460911273bced073a;p=gostls13.git runtime: fix 386, arm build CL 68150047 lost runtime.panicdivide. TBR=dfc CC=golang-codereviews https://golang.org/cl/68610043 --- diff --git a/src/pkg/runtime/panic.c b/src/pkg/runtime/panic.c index f4f2148d54..6e5be3e677 100644 --- a/src/pkg/runtime/panic.c +++ b/src/pkg/runtime/panic.c @@ -487,3 +487,9 @@ runtime·Goexit(void) rundefer(); runtime·goexit(); } + +void +runtime·panicdivide(void) +{ + runtime·panicstring("integer divide by zero"); +}