mirror of https://github.com/YosysHQ/yosys.git
Wrapped init in std::set constructor
This commit is contained in:
parent
9cb2303799
commit
6433203b39
|
@ -32,14 +32,14 @@ struct WreduceConfig
|
||||||
|
|
||||||
WreduceConfig()
|
WreduceConfig()
|
||||||
{
|
{
|
||||||
supported_cell_types = {
|
supported_cell_types = std::set<IdString>({
|
||||||
"$not", "$pos", "$neg",
|
"$not", "$pos", "$neg",
|
||||||
"$and", "$or", "$xor", "$xnor",
|
"$and", "$or", "$xor", "$xnor",
|
||||||
"$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx",
|
"$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx",
|
||||||
"$lt", "$le", "$eq", "$ne", "$eqx", "$nex", "$ge", "$gt",
|
"$lt", "$le", "$eq", "$ne", "$eqx", "$nex", "$ge", "$gt",
|
||||||
"$add", "$sub", // "$mul", "$div", "$mod", "$pow",
|
"$add", "$sub", // "$mul", "$div", "$mod", "$pow",
|
||||||
"$mux", "$pmux"
|
"$mux", "$pmux"
|
||||||
};
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue