diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-30 00:21:52 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-30 00:21:52 +0000 |
commit | 3eb0217ca6de584509a9922075b14417f82a11d5 (patch) | |
tree | 365c588a8f44625a3f5aa828c39bd4189af0bb46 /libgo/runtime/go-new-map.c | |
parent | 9a959f2a57cd4e1fe7f6713a38aaa61e64bb6c8b (diff) | |
download | gcc-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-map.c')
-rw-r--r-- | libgo/runtime/go-new-map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/runtime/go-new-map.c b/libgo/runtime/go-new-map.c index 05ac8a1a40c..288e1883f9d 100644 --- a/libgo/runtime/go-new-map.c +++ b/libgo/runtime/go-new-map.c @@ -4,8 +4,8 @@ Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. */ +#include "runtime.h" #include "go-alloc.h" -#include "go-panic.h" #include "map.h" /* List of prime numbers, copied from libstdc++/src/hashtable.c. */ @@ -111,7 +111,7 @@ __go_new_map (const struct __go_map_descriptor *descriptor, uintptr_t entries) ientries = (int) entries; if (ientries < 0 || (uintptr_t) ientries != entries) - __go_panic_msg ("map size out of range"); + runtime_panicstring ("map size out of range"); if (entries == 0) entries = 5; |