Some elab_pexpr debug text.

This commit is contained in:
Stephen Williams 2008-04-08 20:42:42 -07:00
parent a67d573ae6
commit ba8a41ca28
1 changed files with 5 additions and 0 deletions

View File

@ -193,6 +193,11 @@ NetExpr*PEIdent::elaborate_pexpr(Design*des, NetScope*scope) const
delete res;
return 0;
}
if (debug_elaborate)
cerr << get_fileline() << ": debug: "
<< "Bit select [" << *tmp << "]"
<< " in parameter expression." << endl;
res = new NetESelect(res, tmp, 1);
res->set_line(*this);
break;