diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-12-06 05:48:59 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-12-06 05:48:59 -0500 |
commit | 8a21635effac179a81b618cab3df7d028999e84f (patch) | |
tree | 6a79d383d77b01998541c5b0925979e292bcd622 /src/cpu/o3/sparc/dyn_inst_impl.hh | |
parent | dc105934f3771bd0cfb7407d339a0baed0028576 (diff) | |
download | gem5-8a21635effac179a81b618cab3df7d028999e84f.tar.xz |
Get rid of some typedefs which were hardly used, and move some stuff back here that shouldn't be in the architecture specific DynInst classes.
--HG--
extra : convert_revision : dad0d7191acf773c16dc3ed9dd911f5e8bfc08b3
Diffstat (limited to 'src/cpu/o3/sparc/dyn_inst_impl.hh')
-rw-r--r-- | src/cpu/o3/sparc/dyn_inst_impl.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/sparc/dyn_inst_impl.hh b/src/cpu/o3/sparc/dyn_inst_impl.hh index 210daace2..daf93d4a8 100644 --- a/src/cpu/o3/sparc/dyn_inst_impl.hh +++ b/src/cpu/o3/sparc/dyn_inst_impl.hh @@ -53,11 +53,11 @@ SparcDynInst<Impl>::initVars() // as the normal register entries. It will allow the IQ to work // without any modifications. for (int i = 0; i < this->staticInst->numDestRegs(); i++) { - _destRegIdx[i] = this->staticInst->destRegIdx(i); + this->_destRegIdx[i] = this->staticInst->destRegIdx(i); } for (int i = 0; i < this->staticInst->numSrcRegs(); i++) { - _srcRegIdx[i] = this->staticInst->srcRegIdx(i); + this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i); this->_readySrcRegIdx[i] = 0; } } |