Remove print
Signed-off-by: Kamil Danecki <kdanecki@internships.antmicro.com>
This commit is contained in:
parent
590b34701d
commit
1b77100b6c
|
|
@ -434,7 +434,7 @@ class DynScopeVisitor final : public VNVisitor {
|
||||||
void visit(AstVarRef* nodep) override {
|
void visit(AstVarRef* nodep) override {
|
||||||
ForkDynScopeFrame* const framep = frameOf(nodep->varp());
|
ForkDynScopeFrame* const framep = frameOf(nodep->varp());
|
||||||
if (!framep) return;
|
if (!framep) return;
|
||||||
UINFO(0, "IS AUTO " << nodep->varp()->lifetime());
|
// UINFO(0, "IS AUTO " << nodep->varp()->lifetime());
|
||||||
if (needsDynScope(nodep)) {
|
if (needsDynScope(nodep)) {
|
||||||
bool isEvent = false;
|
bool isEvent = false;
|
||||||
if (AstBasicDType* const dtypep = VN_CAST(nodep->dtypep()->skipRefp(), BasicDType)) {
|
if (AstBasicDType* const dtypep = VN_CAST(nodep->dtypep()->skipRefp(), BasicDType)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue