summaryrefslogtreecommitdiff
path: root/src/cpu/ozone/cpu_impl.hh
diff options
context:
space:
mode:
authorClint Smullen <cws3k@cs.virginia.edu>2008-11-10 11:51:18 -0800
committerClint Smullen <cws3k@cs.virginia.edu>2008-11-10 11:51:18 -0800
commit1adfe5c7f3368c4225ff685ddcd66b6280c7599f (patch)
tree8732797923445ea09d9eac84ff371a33cef2d171 /src/cpu/ozone/cpu_impl.hh
parent9c49bc7b00aa24b0488a83039ae8762d8f8094c5 (diff)
downloadgem5-1adfe5c7f3368c4225ff685ddcd66b6280c7599f.tar.xz
O3CPU: Make the instcount debugging stuff per-cpu.
This is to prevent the assertion from firing if you have a large multicore. Also make sure that it's not compiled in when NDEBUG is defined
Diffstat (limited to 'src/cpu/ozone/cpu_impl.hh')
-rw-r--r--src/cpu/ozone/cpu_impl.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cpu/ozone/cpu_impl.hh b/src/cpu/ozone/cpu_impl.hh
index 93848c03f..1402f4b72 100644
--- a/src/cpu/ozone/cpu_impl.hh
+++ b/src/cpu/ozone/cpu_impl.hh
@@ -95,6 +95,9 @@ OzoneCPU<Impl>::OzoneCPU(Params *p)
: BaseCPU(p), thread(this, 0, p->workload[0], 0),
tickEvent(this, p->width),
#endif
+#ifndef NDEBUG
+ instcount(0),
+#endif
comm(5, 5)
{
frontEnd = new FrontEnd(p);