summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-11-12 21:49:51 -0500
committerKevin Lim <ktlim@umich.edu>2006-11-12 21:49:51 -0500
commit437436a2f706477439cfb81d254e8f7b454450a5 (patch)
tree07494222b34e9bc89085778fb9dfa6ee4d7e8815 /src
parent12e26c68c3e12a17c29b694012819bc7bae7bb5a (diff)
downloadgem5-437436a2f706477439cfb81d254e8f7b454450a5.tar.xz
Fix for non-FS compile.
--HG-- extra : convert_revision : 661b412b0ae670181b89cb7dbc5e9d813804aa7a
Diffstat (limited to 'src')
-rw-r--r--src/cpu/o3/commit_impl.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cpu/o3/commit_impl.hh b/src/cpu/o3/commit_impl.hh
index d8e079a7e..b394759b9 100644
--- a/src/cpu/o3/commit_impl.hh
+++ b/src/cpu/o3/commit_impl.hh
@@ -682,12 +682,15 @@ DefaultCommit<Impl>::commit()
DPRINTF(Commit, "Interrupt pending, waiting for ROB to empty.\n");
}
}
+
+ // Label for goto. Not pretty but more readable than really big
+ // if statement above.
+ commit_insts:
#endif // FULL_SYSTEM
////////////////////////////////////
// Check for any possible squashes, handle them first
////////////////////////////////////
- commit_insts:
std::list<unsigned>::iterator threads = (*activeThreads).begin();
while (threads != (*activeThreads).end()) {