diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-02-20 10:21:36 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-02-20 10:21:36 +0100 |
commit | dc1a0f06fcfe545825f0a432cd42297785c98c1a (patch) | |
tree | c0a299e0304de7968e07b06ce7a30d5925cc4a9b /frontends/ast | |
parent | 78b991d760d52311c09287a2e20270c83c069b6c (diff) | |
download | yosys-dc1a0f06fcfe545825f0a432cd42297785c98c1a.tar.gz yosys-dc1a0f06fcfe545825f0a432cd42297785c98c1a.tar.bz2 yosys-dc1a0f06fcfe545825f0a432cd42297785c98c1a.zip |
Parser support for complex delay expressions
Diffstat (limited to 'frontends/ast')
-rw-r--r-- | frontends/ast/simplify.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc index 095649729..ed767514b 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -61,7 +61,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, log("AST simplify[%d] depth %d at %s:%d,\n", stage, recursion_counter, filename.c_str(), linenum); log("const_fold=%d, at_zero=%d, in_lvalue=%d, stage=%d, width_hint=%d, sign_hint=%d, in_param=%d\n", int(const_fold), int(at_zero), int(in_lvalue), int(stage), int(width_hint), int(sign_hint), int(in_param)); - dumpAst(NULL, "> "); + // dumpAst(NULL, "> "); #endif if (stage == 0) |