mirror of https://github.com/YosysHQ/abc.git
Experiments with LUT mapping for small functions.
This commit is contained in:
parent
4cf906d2fc
commit
03bb1e49bf
|
|
@ -1804,7 +1804,7 @@ static inline word Abc_Tt6Permute_rec( word t, int * pPerm, int nVars )
|
||||||
}
|
}
|
||||||
static inline void Abc_TtPermute( word * p, int * pPerm, int nVars )
|
static inline void Abc_TtPermute( word * p, int * pPerm, int nVars )
|
||||||
{
|
{
|
||||||
int v, nWords = Abc_TtWordNum(nVars), Perm[16];
|
int v, Perm[16];
|
||||||
assert( nVars <= 16 );
|
assert( nVars <= 16 );
|
||||||
for ( v = 0; v < nVars; v++ )
|
for ( v = 0; v < nVars; v++ )
|
||||||
Perm[v] = pPerm[v];
|
Perm[v] = pPerm[v];
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue