From: Josh Bleecher Snyder Date: Mon, 22 Dec 2014 19:23:43 +0000 (-0800) Subject: cmd/gc: update hashmap code location in comments X-Git-Tag: go1.5beta1~2559 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=aaa4bf3720bbf69e1ac65414448baf88b5e4cd83;p=gostls13.git cmd/gc: update hashmap code location in comments Change-Id: I3b81f2e9eb29ee6349d758b68fe7951b34f15a81 Reviewed-on: https://go-review.googlesource.com/1974 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/cmd/gc/walk.c b/src/cmd/gc/walk.c index 4ad1b269df..60b68e9432 100644 --- a/src/cmd/gc/walk.c +++ b/src/cmd/gc/walk.c @@ -706,7 +706,7 @@ walkexpr(Node **np, NodeList **init) walkexpr(&r->right, init); t = r->left->type; p = nil; - if(t->type->width <= 128) { // Check ../../runtime/hashmap.c:MAXVALUESIZE before changing. + if(t->type->width <= 128) { // Check ../../runtime/hashmap.go:maxValueSize before changing. switch(simsimtype(t->down)) { case TINT32: case TUINT32: @@ -1101,7 +1101,7 @@ walkexpr(Node **np, NodeList **init) t = n->left->type; p = nil; - if(t->type->width <= 128) { // Check ../../runtime/hashmap.c:MAXVALUESIZE before changing. + if(t->type->width <= 128) { // Check ../../runtime/hashmap.go:maxValueSize before changing. switch(simsimtype(t->down)) { case TINT32: case TUINT32: