Fix compile error.

--HG--
extra : convert_revision : a4c4195bc07383149a56907f26d327a4bfa77c26
This commit is contained in:
Kevin Lim
2006-11-07 13:53:49 -05:00
parent d9f159a3b9
commit 4589ec55ae
2 changed files with 3 additions and 3 deletions

View File

@@ -363,8 +363,8 @@ class OzoneCPU : public BaseCPU
bool interval_stats;
AlphaITB *itb;
AlphaDTB *dtb;
TheISA::ITB *itb;
TheISA::DTB *dtb;
System *system;
PhysicalMemory *physmem;
#endif

View File

@@ -122,7 +122,7 @@ struct OzoneThreadState : public ThreadState {
MiscReg readMiscRegWithEffect(int misc_reg)
{
return miscRegFile.readRegWithEffect(misc_reg, fault, tc);
return miscRegFile.readRegWithEffect(misc_reg, tc);
}
void setMiscReg(int misc_reg, const MiscReg &val)