Comment out log()

This commit is contained in:
Eddie Hung 2020-02-27 16:53:49 -08:00
parent ab8826ae36
commit 825b96fdcf
1 changed files with 1 additions and 1 deletions

View File

@ -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;