Fix for non-FS compile.
authorKevin Lim <ktlim@umich.edu>
Mon, 13 Nov 2006 02:49:51 +0000 (21:49 -0500)
committerKevin Lim <ktlim@umich.edu>
Mon, 13 Nov 2006 02:49:51 +0000 (21:49 -0500)
--HG--
extra : convert_revision : 661b412b0ae670181b89cb7dbc5e9d813804aa7a

src/cpu/o3/commit_impl.hh

index d8e079a7e6b5272c1f539f8cf134a5095d8a0b13..b394759b943db94f6178c13c19453f833ece27c3 100644 (file)
@@ -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()) {