From 347ba8bc293c0809d7a41f4de3be78b5ffdda2b7 Mon Sep 17 00:00:00 2001 From: Cary R Date: Fri, 24 Aug 2007 10:13:25 -0700 Subject: [PATCH] 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. --- PWire.cc | 6 ++++++ pform.cc | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/PWire.cc b/PWire.cc index fd8ab39f5..7f338fb17 100644 --- a/PWire.cc +++ b/PWire.cc @@ -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) { diff --git a/pform.cc b/pform.cc index 1098d6aca..01a16aab4 100644 --- a/pform.cc +++ b/pform.cc @@ -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