aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-02-27 16:53:49 -0800
committerEddie Hung <eddie@fpgeh.com>2020-02-27 16:53:49 -0800
commit825b96fdcffedec02b4eaaa5f9c4aee5bfc6942a (patch)
tree134f85b5c4bc03ddbad0ac5d4ac87380eb7f4077 /frontends/ast
parentab8826ae36890fd01c7897f7800854c01c5bc267 (diff)
downloadyosys-825b96fdcffedec02b4eaaa5f9c4aee5bfc6942a.tar.gz
yosys-825b96fdcffedec02b4eaaa5f9c4aee5bfc6942a.tar.bz2
yosys-825b96fdcffedec02b4eaaa5f9c4aee5bfc6942a.zip
Comment out log()
Diffstat (limited to 'frontends/ast')
-rw-r--r--frontends/ast/simplify.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index 57107b76a..132116a69 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -1163,7 +1163,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
case AST_DPI_FUNCTION:
//log("found child %s, %s\n", type2str(node->type).c_str(), node->str.c_str());
if (str == node->str) {
- log("add %s, type %s to scope\n", str.c_str(), type2str(node->type).c_str());
+ //log("add %s, type %s to scope\n", str.c_str(), type2str(node->type).c_str());
current_scope[node->str] = node;
}
break;