From cd016d7558d54ca685c2d605920388ec49add083 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Tue, 1 Jun 2010 14:48:57 -0700 Subject: [PATCH] gc: fix export of complex types R=ken2 CC=golang-dev https://golang.org/cl/1442042 --- src/cmd/gc/subr.c | 3 +++ 1 file changed, 3 insertions(+) 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", -- 2.50.0