diff options
author | Claire Wolf <claire@symbioticeda.com> | 2020-04-16 12:11:52 +0200 |
---|---|---|
committer | Claire Wolf <claire@symbioticeda.com> | 2020-04-16 12:11:52 +0200 |
commit | e86ba3b94d7285ded20b4280ad52821cbca504fc (patch) | |
tree | adbc437b36fde41caf7ae668d1f13dfc524f8614 /frontends | |
parent | e1fb12a4b9e1d0685a1a1b060f2887f79b3c297f (diff) | |
download | yosys-e86ba3b94d7285ded20b4280ad52821cbca504fc.tar.gz yosys-e86ba3b94d7285ded20b4280ad52821cbca504fc.tar.bz2 yosys-e86ba3b94d7285ded20b4280ad52821cbca504fc.zip |
Make mask-and-shift the default for bitselwrite
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
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 18ad6926f..2ebe2edbc 100644 --- a/frontends/ast/simplify.cc +++ b/frontends/ast/simplify.cc @@ -1753,7 +1753,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage, result_width = abs(int(left_at_zero_ast->integer - right_at_zero_ast->integer)) + 1; } - if (1) + if (0) { // big case block |