85,87d84
< // Logical register index type.
< typedef TheISA::RegIndex RegIndex;
<
268c265
< std::array<TheISA::RegIndex, TheISA::MaxInstDestRegs> _flatDestRegIdx;
---
> std::array<RegId, TheISA::MaxInstDestRegs> _flatDestRegIdx;
389c386
< TheISA::RegIndex flattenedDestRegIdx(int idx) const
---
> RegId flattenedDestRegIdx(int idx) const
425c422
< void flattenDestReg(int idx, TheISA::RegIndex flattened_dest)
---
> void flattenDestReg(int idx, RegId flattened_dest)
607c604
< RegIndex destRegIdx(int i) const { return staticInst->destRegIdx(i); }
---
> RegId destRegIdx(int i) const { return staticInst->destRegIdx(i); }
610c607
< RegIndex srcRegIdx(int i) const { return staticInst->srcRegIdx(i); }
---
> RegId srcRegIdx(int i) const { return staticInst->srcRegIdx(i); }