summaryrefslogtreecommitdiff
path: root/passes/sat/share.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2014-07-23 09:00:16 +0200
committerClifford Wolf <clifford@clifford.at>2014-07-23 09:34:47 +0200
commit260c19ec5a3adb292158658dd69a352b9325ab64 (patch)
treea5ee152f61ce7952afc7cc7ffaaef66b98511c3a /passes/sat/share.cc
parentc61467a32c4bd3ec4b9e0cb6d36d602f0e4dea81 (diff)
Refactoring {SigSpec|SigChunk}(RTLIL::Wire *wire, ..) constructor -- step 1/3
Diffstat (limited to 'passes/sat/share.cc')
-rw-r--r--passes/sat/share.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/passes/sat/share.cc b/passes/sat/share.cc
index 738b0bd6..724bc3f9 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));