diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-09-30 18:44:07 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-09-30 18:44:07 +0200 |
commit | 4d2917447cc14c590b4fee5ba36948fb4ee6884b (patch) | |
tree | 8cf91fe789d3f1aec1eac277e594f8e7998b4e4a /frontends | |
parent | ac4000d8554c2814f07b6c244d72e807d6356c56 (diff) | |
parent | 9f9fe94b3522d465d98fa491c5992b14d268f09d (diff) | |
download | yosys-4d2917447cc14c590b4fee5ba36948fb4ee6884b.tar.gz yosys-4d2917447cc14c590b4fee5ba36948fb4ee6884b.tar.bz2 yosys-4d2917447cc14c590b4fee5ba36948fb4ee6884b.zip |
Merge branch 'yosys-0.8-rc' of github.com:YosysHQ/yosys
Diffstat (limited to 'frontends')
-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 04c429f7f..aa3b982d8 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -1781,7 +1781,7 @@ skip_dynamic_range_lvalue_expansion:; if (GetSize(children) == 2) { AstNode *buf = children[1]->clone(); - while (buf->simplify(true, false, false, stage, width_hint, sign_hint, false)) { } + while (buf->simplify(true, false, false, stage, -1, false, false)) { } if (buf->type != AST_CONSTANT) log_file_error(filename, linenum, "Failed to evaluate system function `%s' with non-constant value.\n", str.c_str()); |