aboutsummaryrefslogtreecommitdiff
path: root/gcc/go
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/go')
-rw-r--r--gcc/go/gofrontend/types.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/go/gofrontend/types.cc b/gcc/go/gofrontend/types.cc
index 432a647..45545df 100644
--- a/gcc/go/gofrontend/types.cc
+++ b/gcc/go/gofrontend/types.cc
@@ -4989,7 +4989,7 @@ Map_type::do_reflection(Gogo* gogo, std::string* ret) const
{
ret->append("map[");
this->append_reflection(this->key_type_, gogo, ret);
- ret->append("] ");
+ ret->append("]");
this->append_reflection(this->val_type_, gogo, ret);
}