aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-map-range.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2011-05-06 20:06:29 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2011-05-06 20:06:29 +0000
commit4e7e7a49b760bc46bf0ade36c25a7d8e088b6dea (patch)
treea04353390cbd4dbceb299c20d4a3c6ae273157b8 /libgo/runtime/go-map-range.c
parentc81e79b590707957ae3dd2ac872aebba7ad8a46e (diff)
downloadgcc-4e7e7a49b760bc46bf0ade36c25a7d8e088b6dea.zip
gcc-4e7e7a49b760bc46bf0ade36c25a7d8e088b6dea.tar.gz
gcc-4e7e7a49b760bc46bf0ade36c25a7d8e088b6dea.tar.bz2
More uses of backend interface for types.
From-SVN: r173507
Diffstat (limited to 'libgo/runtime/go-map-range.c')
-rw-r--r--libgo/runtime/go-map-range.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/runtime/go-map-range.c b/libgo/runtime/go-map-range.c
index 364cda9..54444bc 100644
--- a/libgo/runtime/go-map-range.c
+++ b/libgo/runtime/go-map-range.c
@@ -34,7 +34,7 @@ __go_mapiternext (struct __go_hash_iter *it)
if (entry == NULL)
{
const struct __go_map *map;
- size_t bucket;
+ uintptr_t bucket;
map = it->map;
bucket = it->bucket;