diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-06-12 19:05:48 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-06-12 19:05:48 -0400 |
commit | 6152e8abc3a120efd6c7a86d4299643b5c82b6b1 (patch) | |
tree | 20e6e424e4ab99d5d216a60eedf1ba7f5b6dd17b /src/cpu | |
parent | 4acb283496c7667bf0161f45e578c702d2cf8dbc (diff) | |
download | gem5-6152e8abc3a120efd6c7a86d4299643b5c82b6b1.tar.xz |
Fix output messages.
src/cpu/o3/decode_impl.hh:
src/cpu/o3/rename_impl.hh:
Fix output message.
--HG--
extra : convert_revision : f226b84d0e15f275286b1ed078d341831370322b
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/o3/decode_impl.hh | 2 | ||||
-rw-r--r-- | src/cpu/o3/rename_impl.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/o3/decode_impl.hh b/src/cpu/o3/decode_impl.hh index 8a6ea6626..0748ddb3b 100644 --- a/src/cpu/o3/decode_impl.hh +++ b/src/cpu/o3/decode_impl.hh @@ -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; diff --git a/src/cpu/o3/rename_impl.hh b/src/cpu/o3/rename_impl.hh index df33b98ee..f9e2a03ee 100644 --- a/src/cpu/o3/rename_impl.hh +++ b/src/cpu/o3/rename_impl.hh @@ -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; |