546a547,557
> template <class Impl>
> typename Impl::DynInstPtr
> ROB<Impl>::findInst(ThreadID tid, InstSeqNum squash_inst)
> {
> for (InstIt it = instList[tid].begin(); it != instList[tid].end(); it++) {
> if ((*it)->seqNum == squash_inst) {
> return *it;
> }
> }
> return NULL;
> }