diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-23 09:00:16 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-23 09:34:47 +0200 |
commit | 260c19ec5a3adb292158658dd69a352b9325ab64 (patch) | |
tree | a5ee152f61ce7952afc7cc7ffaaef66b98511c3a /passes/sat/share.cc | |
parent | c61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81 (diff) | |
download | yosys-260c19ec5a3adb292158658dd69a352b9325ab64.tar.gz yosys-260c19ec5a3adb292158658dd69a352b9325ab64.tar.bz2 yosys-260c19ec5a3adb292158658dd69a352b9325ab64.zip |
Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 1/3
Diffstat (limited to 'passes/sat/share.cc')
-rw-r--r-- | passes/sat/share.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/passes/sat/share.cc b/passes/sat/share.cc index 738b0bd6d..724bc3f98 100644 --- a/passes/sat/share.cc +++ b/passes/sat/share.cc @@ -292,8 +292,8 @@ struct ShareWorker supercell->connections["\\Y"] = y; module->add(supercell); - RTLIL::SigSpec new_y1(y, y1.size()); - RTLIL::SigSpec new_y2(y, y2.size()); + RTLIL::SigSpec new_y1(y, y1.size(), 0); + RTLIL::SigSpec new_y2(y, y2.size(), 0); module->connections.push_back(RTLIL::SigSig(y1, new_y1)); module->connections.push_back(RTLIL::SigSig(y2, new_y2)); @@ -405,8 +405,8 @@ struct ShareWorker supercell->connections["\\Y"] = y; supercell->check(); - RTLIL::SigSpec new_y1(y, y1.size()); - RTLIL::SigSpec new_y2(y, y2.size()); + RTLIL::SigSpec new_y1(y, y1.size(), 0); + RTLIL::SigSpec new_y2(y, y2.size(), 0); module->connections.push_back(RTLIL::SigSig(y1, new_y1)); module->connections.push_back(RTLIL::SigSig(y2, new_y2)); |