diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-13 22:19:43 -0400 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-13 22:19:43 -0400 |
commit | 481aaf03cf933c13c3d9bf294629c6740726025e (patch) | |
tree | 22c6af4e2376cbd955e68a16387a2692385b03fb /cpu/pc_event.cc | |
parent | f94ff9ace556d9aa1ac9d00b8b1dbc73e161d213 (diff) | |
download | gem5-481aaf03cf933c13c3d9bf294629c6740726025e.tar.xz |
Small optimization
cpu/pc_event.cc:
cpu/pc_event.hh:
Do a quick check to see if there is anything to service
before the function is called
--HG--
extra : convert_revision : 16e9b6284ece8b7a53ccf0ca200fab9ba780c50c
Diffstat (limited to 'cpu/pc_event.cc')
-rw-r--r-- | cpu/pc_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/pc_event.cc b/cpu/pc_event.cc index 7b72f5c08..8c584a492 100644 --- a/cpu/pc_event.cc +++ b/cpu/pc_event.cc @@ -84,7 +84,7 @@ PCEventQueue::schedule(PCEvent *event) } bool -PCEventQueue::service(ExecContext *xc) +PCEventQueue::doService(ExecContext *xc) { Addr pc = xc->regs.pc; int serviced = 0; |