summaryrefslogtreecommitdiff
path: root/src/cpu/simple/base.cc
diff options
context:
space:
mode:
authorAli Saidi <saidi@eecs.umich.edu>2008-02-14 16:14:35 -0500
committerAli Saidi <saidi@eecs.umich.edu>2008-02-14 16:14:35 -0500
commit9faec83ac59a4c0912a7ce8e5612aaabf715a5be (patch)
treec2a4fa84db0f14d1843f5f4add0d2f9d73f71bdc /src/cpu/simple/base.cc
parentfc38e9c630e62c97aa633c32933d43d027211989 (diff)
downloadgem5-9faec83ac59a4c0912a7ce8e5612aaabf715a5be.tar.xz
CPU: move the PC Events code to a place where the code won't be executed multiple times if an instruction faults.
--HG-- extra : convert_revision : 19c8e46a4eea206517be7ed4131ab9df0fe00e68
Diffstat (limited to 'src/cpu/simple/base.cc')
-rw-r--r--src/cpu/simple/base.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cpu/simple/base.cc b/src/cpu/simple/base.cc
index 367f38b89..4a91a9e12 100644
--- a/src/cpu/simple/base.cc
+++ b/src/cpu/simple/base.cc
@@ -494,12 +494,6 @@ BaseSimpleCPU::advancePC(Fault fault)
assert(thread->readNextPC() != thread->readNextNPC());
}
}
-
- Addr oldpc;
- do {
- oldpc = thread->readPC();
- system->pcEventQueue.service(tc);
- } while (oldpc != thread->readPC());
}
/*Fault