Handle bit types in package library stream.

This commit is contained in:
Stephen Williams 2011-07-24 16:16:01 -07:00
parent 521005caf6
commit fcecfc065c
1 changed files with 3 additions and 0 deletions

View File

@ -55,6 +55,9 @@ void VTypeArray::write_to_stream(ostream&fd) const
void VTypePrimitive::write_to_stream(ostream&fd) const
{
switch (type_) {
case BIT:
fd << "bit";
break;
case INTEGER:
fd << "integer";
break;