mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-30 04:15:52 +00:00
In order to indicate a failed pattern, blacklist?
This commit is contained in:
parent
0eb7150a57
commit
ece2c49e92
2 changed files with 16 additions and 15 deletions
|
@ -26,9 +26,9 @@ PRIVATE_NAMESPACE_BEGIN
|
|||
|
||||
void create_split_shiftx(split_shiftx_pm &pm)
|
||||
{
|
||||
if (pm.st.shiftxB.empty())
|
||||
return;
|
||||
log_assert(pm.st.shiftx);
|
||||
if (pm.blacklist_cells.count(pm.st.shiftx))
|
||||
return;
|
||||
SigSpec A = pm.st.shiftx->getPort("\\A");
|
||||
SigSpec Y = pm.st.shiftx->getPort("\\Y");
|
||||
const int A_WIDTH = pm.st.shiftx->getParam("\\A_WIDTH").as_int();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue