diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-07-19 16:09:34 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-07-19 16:09:34 -0400 |
commit | 87d485945879bfbfcb798e70d564b02e77fbc250 (patch) | |
tree | 4e54e4c0636d563671ab604bfc3a331ec70247e3 /src/cpu/checker | |
parent | 4bd025742d61a4a098cb584213ecdb8083ef36a4 (diff) | |
download | gem5-87d485945879bfbfcb798e70d564b02e77fbc250.tar.xz |
Minor changes to reflect state used for regression stats.
src/cpu/checker/cpu.hh:
Don't count checker's instructions towards total instructions committed.
src/python/m5/objects/Root.py:
Set default clock to 1 THz.
--HG--
extra : convert_revision : 0b5eaa197c860c361a3b00087e45ddc249ff1918
Diffstat (limited to 'src/cpu/checker')
-rw-r--r-- | src/cpu/checker/cpu.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/checker/cpu.hh b/src/cpu/checker/cpu.hh index a508c56ba..6d6ae1e0a 100644 --- a/src/cpu/checker/cpu.hh +++ b/src/cpu/checker/cpu.hh @@ -170,7 +170,7 @@ class CheckerCPU : public BaseCPU virtual Counter totalInstructions() const { - return numInst - startNumInst; + return 0; } // number of simulated loads |