aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/go-map-index.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-index.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-index.c')
-rw-r--r--libgo/runtime/go-map-index.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgo/runtime/go-map-index.c b/libgo/runtime/go-map-index.c
index 1561c97..02a0f73 100644
--- a/libgo/runtime/go-map-index.c
+++ b/libgo/runtime/go-map-index.c
@@ -21,11 +21,11 @@ __go_map_rehash (struct __go_map *map)
size_t key_offset;
size_t key_size;
size_t (*hashfn) (const void *, size_t);
- size_t old_bucket_count;
+ uintptr_t old_bucket_count;
void **old_buckets;
- size_t new_bucket_count;
+ uintptr_t new_bucket_count;
void **new_buckets;
- size_t i;
+ uintptr_t i;
descriptor = map->__descriptor;