Debugging 64-bit bug in new semi-canonical form..

This commit is contained in:
Alan Mishchenko 2012-09-06 20:58:14 -07:00
parent 1cefca7dea
commit aff7f38495
1 changed files with 4 additions and 0 deletions

View File

@ -121,6 +121,10 @@ inline int minTemp2_fast(word* pInOut, int iVar, int iQ, int jQ, int nWords, int
int blockSize = 1<<iVar;
int shiftSize = blockSize*4;
word temp;
printf( "iVar = %d iQ = %d jQ = %d blockSize = %d shiftSize = %d nWords = %d\n",
iVar, iQ, jQ, blockSize, shiftSize, nWords );
for(i=nWords - 1; i>=0; i--)
{
temp = ((pInOut[i] & SFmask[iVar][iQ])<<(iQ*blockSize)) ^ ((pInOut[i] & SFmask[iVar][jQ])<<(jQ*blockSize));