]> Cypherpunks repositories - gostls13.git/commit
runtime: fix makemap64 function signature
authorMartin Möhrmann <moehrmann@google.com>
Wed, 23 Aug 2017 11:48:05 +0000 (13:48 +0200)
committerMartin Möhrmann <moehrmann@google.com>
Wed, 23 Aug 2017 12:27:22 +0000 (12:27 +0000)
commit15d5fa0291119f195d2d9b9827b650d0e98b85a3
tree92d7d124ce25d145532ee289947ac5f0231b5365
parentea5e3bd2a18fc26fa9028865c8f391b18ed24786
runtime: fix makemap64 function signature

During rebase of golang.org/cl/55152 the bucket argument
which was removed in golang.org/cl/56290 from makemap
was not removed from the argument list of makemap64.

This did lead to "pointer in unallocated span" errors
on 32bit platforms since the compiler did only generate
calls to makemap64 without the bucket argument.

Fixes #21568

Change-Id: Ia964a3c285837cd901297f4e16e40402148f8c1c
Reviewed-on: https://go-review.googlesource.com/57990
Reviewed-by: Cherry Zhang <cherryyz@google.com>
Run-TryBot: Cherry Zhang <cherryyz@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
src/runtime/hashmap.go