diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-06-18 12:44:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 12:44:21 +0200 |
commit | 2123019ac6da12fa116955ee397183363a6e5eaf (patch) | |
tree | e523c5428ab51e9dc2b8f54f2fe5587670c28968 /passes | |
parent | c4f20f744be57d4628400368d5fce040a9dbf269 (diff) | |
parent | 60fb9cabcfad985a4f35acaa74fd6e63b45081bc (diff) | |
download | yosys-2123019ac6da12fa116955ee397183363a6e5eaf.tar.gz yosys-2123019ac6da12fa116955ee397183363a6e5eaf.tar.bz2 yosys-2123019ac6da12fa116955ee397183363a6e5eaf.zip |
Merge pull request #2164 from madebr/msvc
Get yosys building on Visual Studio
Diffstat (limited to 'passes')
-rw-r--r-- | passes/techmap/extract_counter.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/passes/techmap/extract_counter.cc b/passes/techmap/extract_counter.cc index 68b338143..77a4bc0b6 100644 --- a/passes/techmap/extract_counter.cc +++ b/passes/techmap/extract_counter.cc @@ -795,11 +795,11 @@ struct ExtractCounterPass : public Pass { pool<RTLIL::IdString> _parallel_cells; CounterExtractionSettings settings { - .parallel_cells = _parallel_cells, - .maxwidth = 64, - .minwidth = 2, - .allow_arst = true, - .allowed_dirs = 0, + _parallel_cells, // parallel_cells + 64, // maxwidth + 2, // minwidth + true, // allow_arst + 0, // allowed_dirs }; size_t argidx; |