Infinite loop in nex_input of NetBlock objects.
This commit is contained in:
parent
da6b4c447f
commit
e375078dda
|
|
@ -17,7 +17,7 @@
|
||||||
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
||||||
*/
|
*/
|
||||||
#if !defined(WINNT)
|
#if !defined(WINNT)
|
||||||
#ident "$Id: net_nex_input.cc,v 1.3 2002/06/05 03:44:25 steve Exp $"
|
#ident "$Id: net_nex_input.cc,v 1.4 2002/07/14 23:47:58 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
|
|
@ -185,6 +185,7 @@ NexusSet* NetBlock::nex_input()
|
||||||
NexusSet*tmp = cur->nex_input();
|
NexusSet*tmp = cur->nex_input();
|
||||||
result->add(*tmp);
|
result->add(*tmp);
|
||||||
delete tmp;
|
delete tmp;
|
||||||
|
cur = cur->next_;
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
@ -317,6 +318,9 @@ NexusSet* NetWhile::nex_input()
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: net_nex_input.cc,v $
|
* $Log: net_nex_input.cc,v $
|
||||||
|
* Revision 1.4 2002/07/14 23:47:58 steve
|
||||||
|
* Infinite loop in nex_input of NetBlock objects.
|
||||||
|
*
|
||||||
* Revision 1.3 2002/06/05 03:44:25 steve
|
* Revision 1.3 2002/06/05 03:44:25 steve
|
||||||
* Add support for memory words in l-value of
|
* Add support for memory words in l-value of
|
||||||
* non-blocking assignments, and remove the special
|
* non-blocking assignments, and remove the special
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue