fix thinko in visitDirtyFixies()

This commit is contained in:
Joel Dice 2008-01-01 18:45:23 -07:00
parent 4e3e12e9d4
commit eff3ba1418

View File

@ -16,7 +16,7 @@ const unsigned Top = ~static_cast<unsigned>(0);
const unsigned InitialGen2CapacityInBytes = 4 * 1024 * 1024;
const bool Verbose = false;
const bool Verbose = true;
const bool Verbose2 = false;
const bool Debug = false;
const bool DebugFixies = false;
@ -1243,6 +1243,7 @@ visitDirtyFixies(Context* c)
++ bit)
{
unsigned index = indexOf(word, bit);
if (getBit(mask, index)) {
wasDirty = true;
@ -1259,6 +1260,7 @@ visitDirtyFixies(Context* c)
}
}
}
bit = 0;
}
}