Fix output messages.
authorKevin Lim <ktlim@umich.edu>
Mon, 12 Jun 2006 23:05:48 +0000 (19:05 -0400)
committerKevin Lim <ktlim@umich.edu>
Mon, 12 Jun 2006 23:05:48 +0000 (19:05 -0400)
src/cpu/o3/decode_impl.hh:
src/cpu/o3/rename_impl.hh:
    Fix output message.

--HG--
extra : convert_revision : f226b84d0e15f275286b1ed078d341831370322b

src/cpu/o3/decode_impl.hh
src/cpu/o3/rename_impl.hh

index 8a6ea6626ff667696cd6766d593afe783c79e772..0748ddb3b24926e7656d79ab899dcf731abebb0f 100644 (file)
@@ -515,7 +515,7 @@ DefaultDecode<Impl>::checkSignalsAndUpdate(unsigned tid)
 
     // Check ROB squash signals from commit.
     if (fromCommit->commitInfo[tid].robSquashing) {
-        DPRINTF(Decode, "[tid:%]: ROB is still squashing.\n",tid);
+        DPRINTF(Decode, "[tid:%u]: ROB is still squashing.\n", tid);
 
         // Continue to squash.
         decodeStatus[tid] = Squashing;
index df33b98eef8ebbafaefc8b7f1a1d28669a2f7339..f9e2a03ee9bd3b0f0e98aebcf506940c997131ea 100644 (file)
@@ -1206,7 +1206,7 @@ DefaultRename<Impl>::checkSignalsAndUpdate(unsigned tid)
         }
 
         DPRINTF(Rename, "[tid:%u]: Instruction must be processed by rename."
-                " Adding to front of list.", tid);
+                " Adding to front of list.\n", tid);
 
         serializeInst[tid] = NULL;