diff options
author | Clifford Wolf <clifford@clifford.at> | 2019-06-07 12:08:42 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2019-06-07 12:08:42 +0200 |
commit | a3bbc5365bc8ed411ab437a6baea5596531933a8 (patch) | |
tree | b4baf6d5eb444c6e462d874aa21601e5654e3c3c /frontends/ast/ast.h | |
parent | 169de05f3be779dd936ed5e0efea6a6055d5b187 (diff) | |
parent | ac10e7d96da4965751fd60a8dd42a8998c011c39 (diff) | |
download | yosys-a3bbc5365bc8ed411ab437a6baea5596531933a8.tar.gz yosys-a3bbc5365bc8ed411ab437a6baea5596531933a8.tar.bz2 yosys-a3bbc5365bc8ed411ab437a6baea5596531933a8.zip |
Merge branch 'pr_elab_sys_tasks' of https://github.com/udif/yosys into clifford/pr983
Diffstat (limited to 'frontends/ast/ast.h')
-rw-r--r-- | frontends/ast/ast.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 46d482f1a..93997ab86 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -137,7 +137,8 @@ namespace AST AST_GENIF, AST_GENCASE, AST_GENBLOCK, - + AST_TECALL, + AST_POSEDGE, AST_NEGEDGE, AST_EDGE, @@ -233,6 +234,7 @@ 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; }; |