Tom Rollet has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/46599 )

Change subject: cpu: fix commit DPRINTF ROB arguments order
......................................................................

cpu: fix commit DPRINTF ROB arguments order

Change-Id: I7a2bacc5d7e3d8bab47adb762d3f88f2b2fd6e1d
---
M src/cpu/o3/commit.cc
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/src/cpu/o3/commit.cc b/src/cpu/o3/commit.cc
index 4647adb..2cec2b4 100644
--- a/src/cpu/o3/commit.cc
+++ b/src/cpu/o3/commit.cc
@@ -1342,7 +1342,7 @@
             changedROBNumEntries[tid] = true;

DPRINTF(Commit, "[tid:%i] [sn:%llu] Inserting PC %s into ROB.\n",
-                    inst->seqNum, tid, inst->pcState());
+                    tid, inst->seqNum, inst->pcState());

             rob->insertInst(inst);


--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/46599
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: develop
Gerrit-Change-Id: I7a2bacc5d7e3d8bab47adb762d3f88f2b2fd6e1d
Gerrit-Change-Number: 46599
Gerrit-PatchSet: 1
Gerrit-Owner: Tom Rollet <tom.rol...@huawei.com>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list -- gem5-dev@gem5.org
To unsubscribe send an email to gem5-dev-le...@gem5.org
%(web_page_url)slistinfo%(cgiext)s/%(_internal_name)s

Reply via email to