diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-08-23 20:58:07 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-08-23 20:58:07 -0700 |
commit | 73bfe00f82b3e73b691b9774b888465f29e93d7d (patch) | |
tree | 90719817de3ece170b056fc5104dd79407e3413b /src/misc | |
parent | 27b8e541bbe9f7ce8eea4206b1987086f80dc1de (diff) | |
download | abc-73bfe00f82b3e73b691b9774b888465f29e93d7d.tar.gz abc-73bfe00f82b3e73b691b9774b888465f29e93d7d.tar.bz2 abc-73bfe00f82b3e73b691b9774b888465f29e93d7d.zip |
Compiler warning.
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/util/utilTruth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/util/utilTruth.h b/src/misc/util/utilTruth.h index 49f31da7..4f8e7c02 100644 --- a/src/misc/util/utilTruth.h +++ b/src/misc/util/utilTruth.h @@ -2606,7 +2606,7 @@ static inline int Abc_Tt4CheckTwoLevel( int t ) if ( (pair1 = Abc_Tt4Check2(t, 0, 3, f, r)) >= 0 && (pair2 = Abc_Tt4Check2(t, 1, 2, f, r)) >= 0 ) return (3 << 4) | (pair2 << 2) | pair1; return -1; } -static inline Abc_Tt4CountOnes( int t ) +static inline int Abc_Tt4CountOnes( int t ) { t = (t & (0x5555)) + ((t >> 1) & (0x5555)); t = (t & (0x3333)) + ((t >> 2) & (0x3333)); |