From 11eccfc033297deda82ce7582adda7b53c301c59 Mon Sep 17 00:00:00 2001 From: steve Date: Fri, 8 Oct 1999 02:00:35 +0000 Subject: [PATCH] Fix dump of sase statements. --- design_dump.cc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/design_dump.cc b/design_dump.cc index 998f99484..d79a0c67f 100644 --- a/design_dump.cc +++ b/design_dump.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) -#ident "$Id: design_dump.cc,v 1.48 1999/10/07 05:25:33 steve Exp $" +#ident "$Id: design_dump.cc,v 1.49 1999/10/08 02:00:35 steve Exp $" #endif /* @@ -413,10 +413,13 @@ void NetCase::dump(ostream&o, unsigned ind) const switch (type_) { case EQ: o << setw(ind) << "" << "case (" << *expr_ << ")" << endl; + break; case EQX: o << setw(ind) << "" << "casex (" << *expr_ << ")" << endl; + break; case EQZ: o << setw(ind) << "" << "casez (" << *expr_ << ")" << endl; + break; } for (unsigned idx = 0 ; idx < nitems_ ; idx += 1) { @@ -786,6 +789,9 @@ void Design::dump(ostream&o) const /* * $Log: design_dump.cc,v $ + * Revision 1.49 1999/10/08 02:00:35 steve + * Fix dump of sase statements. + * * Revision 1.48 1999/10/07 05:25:33 steve * Add non-const bit select in l-value of assignment. *