diff options
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/simple_thread.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/cpu/simple_thread.cc b/src/cpu/simple_thread.cc index af121e43f..d2171a0e4 100644 --- a/src/cpu/simple_thread.cc +++ b/src/cpu/simple_thread.cc @@ -179,11 +179,6 @@ SimpleThread::serialize(ostream &os) SERIALIZE_ARRAY(intRegs, TheISA::NumIntRegs); _pcState.serialize(os); // thread_num and cpu_id are deterministic from the config - - // - // Now must serialize all the ISA dependent state - // - isa->serialize(baseCpu, os); } @@ -195,11 +190,6 @@ SimpleThread::unserialize(Checkpoint *cp, const std::string §ion) UNSERIALIZE_ARRAY(intRegs, TheISA::NumIntRegs); _pcState.unserialize(cp, section); // thread_num and cpu_id are deterministic from the config - - // - // Now must unserialize all the ISA dependent state - // - isa->unserialize(baseCpu, cp, section); } void |