From: Kevin Lim Date: Mon, 13 Nov 2006 02:49:51 +0000 (-0500) Subject: Fix for non-FS compile. X-Git-Tag: m5_2.0_beta2~53^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=437436a2f706477439cfb81d254e8f7b454450a5;p=gem5.git Fix for non-FS compile. --HG-- extra : convert_revision : 661b412b0ae670181b89cb7dbc5e9d813804aa7a --- 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::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::iterator threads = (*activeThreads).begin(); while (threads != (*activeThreads).end()) {