summaryrefslogtreecommitdiff
path: root/src/cpu/simple
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-02 18:25:37 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-02 18:25:37 -0700
commit988cdb49f28c904b4b50c64759305bb371b81776 (patch)
tree2b4f70ee209fb8ba62a2408a884194577dc467f1 /src/cpu/simple
parent48041fdc531a535a45c86d61675ec7f654629fb3 (diff)
downloadgem5-988cdb49f28c904b4b50c64759305bb371b81776.tar.xz
CPU: Make the cpus check the pc event queues in SE mode.
--HG-- extra : convert_revision : 9dc4ea136c3c3f87a73d55e91bc4aae4eba70464
Diffstat (limited to 'src/cpu/simple')
-rw-r--r--src/cpu/simple/base.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/simple/base.cc b/src/cpu/simple/base.cc
index 9fc1d1dd9..812a15c87 100644
--- a/src/cpu/simple/base.cc
+++ b/src/cpu/simple/base.cc
@@ -493,12 +493,10 @@ BaseSimpleCPU::advancePC(Fault fault)
}
}
-#if FULL_SYSTEM
Addr oldpc;
do {
oldpc = thread->readPC();
system->pcEventQueue.service(tc);
} while (oldpc != thread->readPC());
-#endif
}