diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-08-30 19:09:56 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-08-30 19:09:56 +0200 |
commit | 6f41e5277d1d41db7a620c73cf1b65558b55f236 (patch) | |
tree | 45cad8b0cafc31392a3fe71a505b442ee6a61ed7 /kernel/rtlil.cc | |
parent | a8124c137e2bfa3605dacadfe469ea22934b4cb3 (diff) | |
download | yosys-6f41e5277d1d41db7a620c73cf1b65558b55f236.tar.gz yosys-6f41e5277d1d41db7a620c73cf1b65558b55f236.tar.bz2 yosys-6f41e5277d1d41db7a620c73cf1b65558b55f236.zip |
Removed $aconst cell type
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index de492bcc6..41b4b93f0 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -1030,7 +1030,7 @@ namespace { return; } - if (cell->type.in("$aconst", "$anyconst")) { + if (cell->type == "$anyconst") { port("\\Y", param("\\WIDTH")); check_expected(); return; |