diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-06-07 12:41:09 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-06-07 12:41:09 +0200 |
commit | 211d85cfcc1ae701bb9392347bcbb9750e3045b0 (patch) | |
tree | ba04c46a5db3cf2f41ca6545d1f6e930b354369c /frontends/ast/ast.h | |
parent | a3bbc5365bc8ed411ab437a6baea5596531933a8 (diff) | |
download | yosys-211d85cfcc1ae701bb9392347bcbb9750e3045b0.tar.gz yosys-211d85cfcc1ae701bb9392347bcbb9750e3045b0.tar.bz2 yosys-211d85cfcc1ae701bb9392347bcbb9750e3045b0.zip |
Fixes and cleanups in AST_TECALL handling
Signed-off-by: Clifford Wolf <clifford@clifford.at>
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 93997ab86..b8cde060e 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -234,7 +234,6 @@ namespace AST bool mem2reg_check(pool<AstNode*> &mem2reg_set); void mem2reg_remove(pool<AstNode*> &mem2reg_set, vector<AstNode*> &delnodes); void meminfo(int &mem_width, int &mem_size, int &addr_bits); - bool check_elab_tasks(void); // additional functionality for evaluating constant functions struct varinfo_t { RTLIL::Const val; int offset; bool is_signed; }; |