compiler: Fix a couple of type reflection strings.

From-SVN: r192015
This commit is contained in:
Ian Lance Taylor 2012-10-02 23:50:38 +00:00
parent 03e29d198e
commit d2773ac376
1 changed files with 9 additions and 3 deletions

View File

@ -4928,14 +4928,15 @@ Struct_type::write_equal_function(Gogo* gogo, Named_type* name)
void
Struct_type::do_reflection(Gogo* gogo, std::string* ret) const
{
ret->append("struct { ");
ret->append("struct {");
for (Struct_field_list::const_iterator p = this->fields_->begin();
p != this->fields_->end();
++p)
{
if (p != this->fields_->begin())
ret->append("; ");
ret->push_back(';');
ret->push_back(' ');
if (p->is_anonymous())
ret->push_back('?');
else
@ -4968,7 +4969,10 @@ Struct_type::do_reflection(Gogo* gogo, std::string* ret) const
}
}
ret->append(" }");
if (!this->fields_->empty())
ret->push_back(' ');
ret->push_back('}');
}
// Mangled name.
@ -8399,6 +8403,7 @@ Named_type::do_reflection(Gogo* gogo, std::string* ret) const
}
if (this->in_function_ != NULL)
{
ret->push_back('\t');
ret->append(Gogo::unpack_hidden_name(this->in_function_->name()));
ret->push_back('$');
if (this->in_function_index_ > 0)
@ -8408,6 +8413,7 @@ Named_type::do_reflection(Gogo* gogo, std::string* ret) const
ret->append(buf);
ret->push_back('$');
}
ret->push_back('\t');
}
ret->append(Gogo::unpack_hidden_name(this->named_object_->name()));
}