aboutsummaryrefslogtreecommitdiffstats
path: root/frontends/ast/simplify.cc
diff options
context:
space:
mode:
authorKazuki Sakamoto <sakamoto@splhack.org>2020-06-14 15:15:59 -0700
committerKazuki Sakamoto <sakamoto@splhack.org>2020-06-19 17:39:20 -0700
commit185bbbe681d02874796e70a1ee147f4b8dca6cbb (patch)
tree31ad1e634e09fdd40776a8c44a407d2b6d416f69 /frontends/ast/simplify.cc
parent338ecbe02f8bb3cc4d69de1445c7f398a814b4e4 (diff)
downloadyosys-185bbbe681d02874796e70a1ee147f4b8dca6cbb.tar.gz
yosys-185bbbe681d02874796e70a1ee147f4b8dca6cbb.tar.bz2
yosys-185bbbe681d02874796e70a1ee147f4b8dca6cbb.zip
static cast: support changing size and signedness
Support SystemVerilog Static Cast - size - signedness - (type is not supposted yet) Fix #535
Diffstat (limited to 'frontends/ast/simplify.cc')
-rw-r--r--frontends/ast/simplify.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/simplify.cc b/frontends/ast/simplify.cc
index 5f026dfed..1d5dd91a7 100644
--- a/frontends/ast/simplify.cc
+++ b/frontends/ast/simplify.cc
@@ -950,6 +950,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
case AST_TO_SIGNED:
case AST_TO_UNSIGNED:
case AST_SELFSZ:
+ case AST_CAST_SIZE:
case AST_CONCAT:
case AST_REPLICATE:
case AST_REDUCE_AND: