3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-28 23:17:57 +00:00

Added wreduce $mul support and fixed signed $mul opt_const bug

This commit is contained in:
Clifford Wolf 2015-09-25 17:27:06 +02:00
parent 4864736167
commit 82028c42e0
2 changed files with 37 additions and 5 deletions

View file

@ -37,7 +37,7 @@ struct WreduceConfig
"$and", "$or", "$xor", "$xnor",
"$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx",
"$lt", "$le", "$eq", "$ne", "$eqx", "$nex", "$ge", "$gt",
"$add", "$sub", // "$mul", "$div", "$mod", "$pow",
"$add", "$sub", "$mul", // "$div", "$mod", "$pow",
"$mux", "$pmux"
});
}