diff options
| author | Udi Finkelstein <github@udifink.com> | 2018-06-05 17:44:24 +0300 |
|---|---|---|
| committer | Unknown <github@udifink.com> | 2018-06-05 18:03:22 +0300 |
| commit | 73d426bc879087ca522ca595a8ba921b647fae27 (patch) | |
| tree | 29a18815bf8fdae5f20fa4762da31562eabe2829 /frontends/ast/ast.h | |
| parent | 80d9d15f1c4b73ee73172b06fd2c8c55703aea54 (diff) | |
| download | yosys-73d426bc879087ca522ca595a8ba921b647fae27.tar.gz yosys-73d426bc879087ca522ca595a8ba921b647fae27.tar.bz2 yosys-73d426bc879087ca522ca595a8ba921b647fae27.zip | |
Modified errors into warnings
No longer false warnings for memories and assertions
Diffstat (limited to 'frontends/ast/ast.h')
| -rw-r--r-- | frontends/ast/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/ast.h b/frontends/ast/ast.h index 9b7124934..8a640b1cc 100644 --- a/frontends/ast/ast.h +++ b/frontends/ast/ast.h @@ -168,7 +168,7 @@ namespace AST // node content - most of it is unused in most node types std::string str; std::vector<RTLIL::State> bits; - bool is_input, is_output, is_reg, is_logic, is_signed, is_string, range_valid, range_swapped; + bool is_input, is_output, is_reg, is_logic, is_signed, is_string, range_valid, range_swapped, was_checked; int port_id, range_left, range_right; uint32_t integer; double realvalue; |
