Fix use of system tasks in AT_STAR statements.

This commit is contained in:
steve
2004-08-28 16:23:05 +00:00
parent 7f67afe9d5
commit f02f5be3cc
2 changed files with 18 additions and 2 deletions
+13 -1
View File
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: net_nex_output.cc,v 1.9 2004/06/30 15:32:18 steve Exp $"
#ident "$Id: net_nex_output.cc,v 1.10 2004/08/28 16:23:05 steve Exp $"
#endif
# include "config.h"
@@ -100,6 +100,15 @@ void NetPDelay::nex_output(NexusSet&out)
if (statement_) statement_->nex_output(out);
}
/*
* For the purposes of synthesis, system task calls have no output at
* all. This is OK because most system tasks are not synthesizeable in
* the first place.
*/
void NetSTask::nex_output(NexusSet&out)
{
}
void NetWhile::nex_output(NexusSet&out)
{
if (proc_ != 0)
@@ -108,6 +117,9 @@ void NetWhile::nex_output(NexusSet&out)
/*
* $Log: net_nex_output.cc,v $
* Revision 1.10 2004/08/28 16:23:05 steve
* Fix use of system tasks in AT_STAR statements.
*
* Revision 1.9 2004/06/30 15:32:18 steve
* nex_output for NetPDelay statements.
*