3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-05 14:55:47 +00:00

Revert "Merge branch 'eddie/split_shiftx' into xc7mux"

This reverts commit 3042d58330, reversing
changes made to feff976454.
This commit is contained in:
Eddie Hung 2019-04-26 15:32:02 -07:00
parent 8469d9fe9f
commit dcc8a13e48
9 changed files with 14 additions and 158 deletions

View file

@ -464,7 +464,7 @@ struct CellTypes
if (cell->type == "$_AOI4_")
return eval_not(const_or(const_and(arg1, arg2, false, false, 1), const_and(arg3, arg4, false, false, 1), false, false, 1));
if (cell->type == "$_OAI4_")
return eval_not(const_and(const_or(arg1, arg2, false, false, 1), const_or(arg3, arg4, false, false, 1), false, false, 1));
return eval_not(const_and(const_or(arg1, arg2, false, false, 1), const_and(arg3, arg4, false, false, 1), false, false, 1));
log_assert(arg4.bits.size() == 0);
return eval(cell, arg1, arg2, arg3, errp);