diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2019-09-27 11:00:44 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2019-09-27 11:00:44 -0700 |
commit | cdabd42a26b28f19b883682c26df32c53ab31164 (patch) | |
tree | 2305fce75a4cbe5a3e4f1acd9e7aac4292217382 | |
parent | b292595062b947bc0c1de79fe25facb34c0e20c1 (diff) | |
download | abc-cdabd42a26b28f19b883682c26df32c53ab31164.tar.gz abc-cdabd42a26b28f19b883682c26df32c53ab31164.tar.bz2 abc-cdabd42a26b28f19b883682c26df32c53ab31164.zip |
Fixing compilication problem related to shiftFunc().
-rw-r--r-- | src/opt/dau/dauCanon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opt/dau/dauCanon.c b/src/opt/dau/dauCanon.c index 62ea7cc3..89359611 100644 --- a/src/opt/dau/dauCanon.c +++ b/src/opt/dau/dauCanon.c @@ -369,7 +369,7 @@ int Abc_TtCountOnesInCofsSimple( word * pTruth, int nVars, int * pStore ) } // Shifted Cofactor Coefficient -inline int shiftFunc(int ci) +static inline int shiftFunc(int ci) //{ return ci * ci; } { return 1 << ci; } |