diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2012-02-12 16:07:39 -0600 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2012-02-12 16:07:39 -0600 |
commit | 542d0ceebca1d24bfb433ce9fe916b0586f8d029 (patch) | |
tree | 45afbefa2ec6a79de564d2c4505667a4d974e1f5 /src/arch | |
parent | 230540e655efd09ad057e7fde2ac257f355c06d1 (diff) | |
download | gem5-542d0ceebca1d24bfb433ce9fe916b0586f8d029.tar.xz |
cpu: add separate stats for insts/ops both globally and per cpu model
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/noisa/cpu_dummy.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/arch/noisa/cpu_dummy.hh b/src/arch/noisa/cpu_dummy.hh index 2b83f5e5d..0d494d6a5 100644 --- a/src/arch/noisa/cpu_dummy.hh +++ b/src/arch/noisa/cpu_dummy.hh @@ -2,5 +2,6 @@ class BaseCPU { public: - static int numSimulatedInstructions() { return 0; } + static int numSimulatedInsts() { return 0; } + static int numSimulatedOps() { return 0; } }; |