39a40
> #include <cmath>
72c73,82
< UNSERIALIZE_SCALAR(logBytes);
---
> //
> // The logBytes scalar variable replaced the previous size variable.
> // The following code maintains backwards compatibility with previous
> // checkpoints using the old size variable.
> //
> if (UNSERIALIZE_OPT_SCALAR(logBytes) == false) {
> int size;
> UNSERIALIZE_SCALAR(size);
> logBytes = log2(size);
> }
79c89,91
< UNSERIALIZE_SCALAR(lruSeq);
---
> if (UNSERIALIZE_OPT_SCALAR(lruSeq) == false) {
> lruSeq = 0;
> }