Properly ignore NetAssign_ objects.
This commit is contained in:
parent
ece3f5e0a2
commit
e95d0c3b87
6
t-vvm.cc
6
t-vvm.cc
|
|
@ -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) && !defined(macintosh)
|
#if !defined(WINNT) && !defined(macintosh)
|
||||||
#ident "$Id: t-vvm.cc,v 1.170 2000/09/02 20:54:21 steve Exp $"
|
#ident "$Id: t-vvm.cc,v 1.171 2000/09/03 17:58:14 steve Exp $"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
# include <iostream>
|
# include <iostream>
|
||||||
|
|
@ -166,6 +166,7 @@ class target_vvm : public target_t {
|
||||||
virtual void udp(const NetUDP*);
|
virtual void udp(const NetUDP*);
|
||||||
virtual void udp_comb(const NetUDP_COMB*);
|
virtual void udp_comb(const NetUDP_COMB*);
|
||||||
void udp_sequ_(ostream&os, const NetUDP*);
|
void udp_sequ_(ostream&os, const NetUDP*);
|
||||||
|
virtual void net_assign(const NetAssign_*) { }
|
||||||
virtual void net_case_cmp(const NetCaseCmp*);
|
virtual void net_case_cmp(const NetCaseCmp*);
|
||||||
virtual bool net_cassign(const NetCAssign*);
|
virtual bool net_cassign(const NetCAssign*);
|
||||||
virtual bool net_const(const NetConst*);
|
virtual bool net_const(const NetConst*);
|
||||||
|
|
@ -3112,6 +3113,9 @@ extern const struct target tgt_vvm = {
|
||||||
};
|
};
|
||||||
/*
|
/*
|
||||||
* $Log: t-vvm.cc,v $
|
* $Log: t-vvm.cc,v $
|
||||||
|
* Revision 1.171 2000/09/03 17:58:14 steve
|
||||||
|
* Properly ignore NetAssign_ objects.
|
||||||
|
*
|
||||||
* Revision 1.170 2000/09/02 20:54:21 steve
|
* Revision 1.170 2000/09/02 20:54:21 steve
|
||||||
* Rearrange NetAssign to make NetAssign_ separate.
|
* Rearrange NetAssign to make NetAssign_ separate.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue