diff options
author | Zachary Snow <zach@zachjs.com> | 2022-01-11 23:51:08 -0700 |
---|---|---|
committer | Zachary Snow <zachary.j.snow@gmail.com> | 2022-02-11 21:01:51 +0100 |
commit | 90bb47d18140e381e65bd2b51fd793a0692b56a0 (patch) | |
tree | a9dd99b1a9a28640fd2777d5fb38aa89bd2a30d2 /frontends/ast/ast.h | |
parent | ca876e7c12856ed52e2a30e3ebbc7836ae18dfb9 (diff) | |
download | yosys-90bb47d18140e381e65bd2b51fd793a0692b56a0.tar.gz yosys-90bb47d18140e381e65bd2b51fd793a0692b56a0.tar.bz2 yosys-90bb47d18140e381e65bd2b51fd793a0692b56a0.zip |
verilog: fix const func eval with upto variables
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 48ec9a063..80497c131 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -268,6 +268,7 @@ namespace AST struct varinfo_t { RTLIL::Const val; int offset; + bool range_swapped; bool is_signed; AstNode *arg = nullptr; bool explicitly_sized; |