Fix compile error.
authorKevin Lim <ktlim@umich.edu>
Tue, 7 Nov 2006 18:53:49 +0000 (13:53 -0500)
committerKevin Lim <ktlim@umich.edu>
Tue, 7 Nov 2006 18:53:49 +0000 (13:53 -0500)
--HG--
extra : convert_revision : a4c4195bc07383149a56907f26d327a4bfa77c26

src/cpu/ozone/cpu.hh
src/cpu/ozone/thread_state.hh

index 828c2b4cab844c30bdfedd0214b369fa312a210a..ccb467394d34eb04087034a354b3b3a00a3df49d 100644 (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
index c4d16b3af9a5202d45509c1e25e83b2eb93bff3a..a71795851e05c72a8e6c7778464a3f02936aa6f1 100644 (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)