From: Russ Cox Date: Tue, 1 Jun 2010 21:48:57 +0000 (-0700) Subject: gc: fix export of complex types X-Git-Tag: weekly.2010-06-09~47 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=cd016d7558d54ca685c2d605920388ec49add083;p=gostls13.git gc: fix export of complex types R=ken2 CC=golang-dev https://golang.org/cl/1442042 --- diff --git a/src/cmd/gc/subr.c b/src/cmd/gc/subr.c index cf7b1865cf..ac700b4c0e 100644 --- a/src/cmd/gc/subr.c +++ b/src/cmd/gc/subr.c @@ -1123,6 +1123,9 @@ basicnames[] = [TFLOAT] = "float", [TFLOAT32] = "float32", [TFLOAT64] = "float64", + [TCOMPLEX] = "complex", + [TCOMPLEX64] = "complex64", + [TCOMPLEX128] = "complex128", [TBOOL] = "bool", [TANY] = "any", [TSTRING] = "string",