Comment out routines that pr1779647 made obsolete.

I decided not to delete these since we may at some point in time want
this functionality back. For now they are commented out with an
explanation so we know what is going on.
This commit is contained in:
Cary R 2007-08-24 10:13:25 -07:00 committed by Stephen Williams
parent c7538386fc
commit 347ba8bc29
2 changed files with 12 additions and 0 deletions

View File

@ -131,12 +131,18 @@ bool PWire::get_isint() const
return isint_;
}
/*
* Since implicitly defined list of port declarations are no longer
* considered fully defined we no longer need this routine to force
* them to be fully defined.
*
void PWire::set_net_range()
{
net_msb_ = port_msb_;
net_lsb_ = port_lsb_;
net_set_ = true;
}
*/
void PWire::set_range(PExpr*m, PExpr*l, PWSRType type)
{

View File

@ -833,6 +833,11 @@ void pform_make_udp(perm_string name, bool synchronous_flag,
* the new (1364-2001) list_of_port_declarations, but omitted a
* register/wire/etc. that would have triggered it to be set elsewhere.
*/
/*
* Since implicitly defined list of port declarations are no longer
* considered fully defined we no longer need this routine to force
* them to be fully defined.
*
void pform_set_net_range(const char* name)
{
PWire*cur = get_wire_in_module(hier_name(name));
@ -842,6 +847,7 @@ void pform_set_net_range(const char* name)
}
cur->set_net_range();
}
*/
/*
* This function attaches a range to a given name. The function is