40a41
> #include "mem/ruby/common/BoolVec.hh"
127a129,140
> inline int
> countBoolVec(BoolVec bVec)
> {
> int count = 0;
> for (const auto &it: bVec) {
> if (it) {
> count++;
> }
> }
> return count;
> }
>