Yet another merge with the main repository.
[gem5.git] / src / cpu / inorder / resources / graduation_unit.hh
index 01abae85bc37c482bf0b0854fbd968afa2dbf01c..836b568a66175e2740a4f78a436c60cad06f50a0 100644 (file)
@@ -58,9 +58,9 @@ class GraduationUnit : public Resource {
     void execute(int slot_num);
 
   protected:
-    Tick lastNonSpecTick;
+    Tick lastNonSpecTick[ThePipeline::MaxThreads];
+    Tick lastFaultTick[ThePipeline::MaxThreads];
     bool *nonSpecInstActive[ThePipeline::MaxThreads];
-
     InstSeqNum *nonSpecSeqNum[ThePipeline::MaxThreads];
 };