Commit cd016d75 authored by Russ Cox's avatar Russ Cox

gc: fix export of complex types

R=ken2
CC=golang-dev
https://golang.org/cl/1442042
parent ab215f73
......@@ -1123,6 +1123,9 @@ basicnames[] =
[TFLOAT] = "float",
[TFLOAT32] = "float32",
[TFLOAT64] = "float64",
[TCOMPLEX] = "complex",
[TCOMPLEX64] = "complex64",
[TCOMPLEX128] = "complex128",
[TBOOL] = "bool",
[TANY] = "any",
[TSTRING] = "string",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment