summaryrefslogtreecommitdiff
path: root/src/cpu/base.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/base.cc')
-rw-r--r--src/cpu/base.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/base.cc b/src/cpu/base.cc
index 25bd3f893..7b04f5a90 100644
--- a/src/cpu/base.cc
+++ b/src/cpu/base.cc
@@ -334,7 +334,8 @@ BaseCPU::takeOverFrom(BaseCPU *oldCPU, Port *ic, Port *dc)
newTC->getProcessPtr()->replaceThreadContext(newTC, newTC->readCpuId());
#endif
-// TheISA::compareXCs(oldXC, newXC);
+ if (DTRACE(Context))
+ ThreadContext::compare(oldTC, newTC);
}
#if FULL_SYSTEM