92,100d91
< // Bimodal Predictor Entry
< struct BimodalEntry
< {
< uint8_t pred;
< uint8_t hyst;
<
< BimodalEntry() : pred(0), hyst(1) { }
< };
<
357a349
> const unsigned logRatioBiModalHystEntries;
367c359,360
< BimodalEntry *btable;
---
> std::vector<bool> btablePrediction;
> std::vector<bool> btableHysteresis;