summaryrefslogtreecommitdiff
path: root/src/cpu/inorder/pipeline_stage.hh
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2009-03-05 19:09:53 -0800
committerNathan Binkert <nate@binkert.org>2009-03-05 19:09:53 -0800
commitcc95b5739097e31fdaa36a3ff443861969e338b1 (patch)
treeebcf51fd9ba4480bfb5a444320f8447d1f1ecd2d /src/cpu/inorder/pipeline_stage.hh
parentc7e82f965fa40b4a377a6ddedcdeb542a43ae7c5 (diff)
downloadgem5-cc95b5739097e31fdaa36a3ff443861969e338b1.tar.xz
stats: Fix all stats usages to deal with template fixes
Diffstat (limited to 'src/cpu/inorder/pipeline_stage.hh')
-rw-r--r--src/cpu/inorder/pipeline_stage.hh14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cpu/inorder/pipeline_stage.hh b/src/cpu/inorder/pipeline_stage.hh
index 2fd8f2215..b074639fb 100644
--- a/src/cpu/inorder/pipeline_stage.hh
+++ b/src/cpu/inorder/pipeline_stage.hh
@@ -340,19 +340,19 @@ class PipelineStage
//@TODO: Use Stats for the pipeline stages
/** Stat for total number of idle cycles. */
- //Stats::Scalar<> stageIdleCycles;
+ //Stats::Scalar stageIdleCycles;
/** Stat for total number of blocked cycles. */
- //Stats::Scalar<> stageBlockedCycles;
+ //Stats::Scalar stageBlockedCycles;
/** Stat for total number of normal running cycles. */
- //Stats::Scalar<> stageRunCycles;
+ //Stats::Scalar stageRunCycles;
/** Stat for total number of unblocking cycles. */
- //Stats::Scalar<> stageUnblockCycles;
+ //Stats::Scalar stageUnblockCycles;
/** Stat for total number of squashing cycles. */
- //Stats::Scalar<> stageSquashCycles;
+ //Stats::Scalar stageSquashCycles;
/** Stat for total number of staged instructions. */
- //Stats::Scalar<> stageProcessedInsts;
+ //Stats::Scalar stageProcessedInsts;
/** Stat for total number of squashed instructions. */
- //Stats::Scalar<> stageSquashedInsts;
+ //Stats::Scalar stageSquashedInsts;
};
#endif