summaryrefslogtreecommitdiff
path: root/libgo/runtime/go-new-channel.c
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-11-30 00:21:52 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2011-11-30 00:21:52 +0000
commit3eb0217ca6de584509a9922075b14417f82a11d5 (patch)
tree365c588a8f44625a3f5aa828c39bd4189af0bb46 /libgo/runtime/go-new-channel.c
parent9a959f2a57cd4e1fe7f6713a38aaa61e64bb6c8b (diff)
downloadgcc-3eb0217ca6de584509a9922075b14417f82a11d5.tar.gz
runtime: Copy runtime_panicstring from master library.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@181830 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo/runtime/go-new-channel.c')
-rw-r--r--libgo/runtime/go-new-channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/go-new-channel.c b/libgo/runtime/go-new-channel.c
index 2f5bf2ea20a..fe13c5efab6 100644
--- a/libgo/runtime/go-new-channel.c
+++ b/libgo/runtime/go-new-channel.c
@@ -7,9 +7,9 @@
#include <stddef.h>
#include <stdint.h>
+#include "runtime.h"
#include "go-alloc.h"
#include "go-assert.h"
-#include "go-panic.h"
#include "channel.h"
struct __go_channel*
@@ -34,7 +34,7 @@ __go_new_channel (const struct __go_type_descriptor *channel_type,
if (ientries < 0
|| (uintptr_t) ientries != entries
|| (element_size > 0 && entries > (uintptr_t) -1 / element_size))
- __go_panic_msg ("chan size out of range");
+ runtime_panicstring ("chan size out of range");
alloc_size = (element_size + sizeof (uint64_t) - 1) / sizeof (uint64_t);