diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-12-16 09:18:56 -1000 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-12-16 09:18:56 -1000 |
commit | 54269c7cec31c7580bed4e2bd1811c0208122ffa (patch) | |
tree | 7dbca44691074bd2fc8c329ef266a80e29c873e0 | |
parent | 09a17b89fefe0c7c2cefc5e8fda8d8d614f41eee (diff) | |
download | abc-54269c7cec31c7580bed4e2bd1811c0208122ffa.tar.gz abc-54269c7cec31c7580bed4e2bd1811c0208122ffa.tar.bz2 abc-54269c7cec31c7580bed4e2bd1811c0208122ffa.zip |
Compiler warning.
-rw-r--r-- | src/misc/util/utilTruth.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/misc/util/utilTruth.h b/src/misc/util/utilTruth.h index 9628ae5d..cb567096 100644 --- a/src/misc/util/utilTruth.h +++ b/src/misc/util/utilTruth.h @@ -1260,13 +1260,6 @@ static inline word Abc_Tt6SwapAdjacent( word Truth, int iVar ) } static inline void Abc_TtSwapAdjacent( word * pTruth, int nWords, int iVar ) { - static word s_PMasks[5][3] = { - { ABC_CONST(0x9999999999999999), ABC_CONST(0x2222222222222222), ABC_CONST(0x4444444444444444) }, - { ABC_CONST(0xC3C3C3C3C3C3C3C3), ABC_CONST(0x0C0C0C0C0C0C0C0C), ABC_CONST(0x3030303030303030) }, - { ABC_CONST(0xF00FF00FF00FF00F), ABC_CONST(0x00F000F000F000F0), ABC_CONST(0x0F000F000F000F00) }, - { ABC_CONST(0xFF0000FFFF0000FF), ABC_CONST(0x0000FF000000FF00), ABC_CONST(0x00FF000000FF0000) }, - { ABC_CONST(0xFFFF00000000FFFF), ABC_CONST(0x00000000FFFF0000), ABC_CONST(0x0000FFFF00000000) } - }; if ( iVar < 5 ) { int i, Shift = (1 << iVar); |