diff options
Diffstat (limited to 'src/cmd/gc/range.c')
-rw-r--r-- | src/cmd/gc/range.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/gc/range.c b/src/cmd/gc/range.c index 50c4617c0..e80a8c723 100644 --- a/src/cmd/gc/range.c +++ b/src/cmd/gc/range.c @@ -182,8 +182,8 @@ walkrange(Node *n) th = typ(TARRAY); th->type = ptrto(types[TUINT8]); // see ../../pkg/runtime/hashmap.h:/hash_iter - // Size in words. - th->bound = 5 + 4*3 + 4*4/widthptr; + // Size of hash_iter in # of pointers. + th->bound = 10; hit = temp(th); fn = syslook("mapiterinit", 1); |