changeset 128c1ed03f4e in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=128c1ed03f4e
description:
        minor: Fix typo in DPRINTF for Minor branch prediction

diffstat:

 src/cpu/minor/execute.cc |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (16 lines):

diff -r e2c43045a81b -r 128c1ed03f4e src/cpu/minor/execute.cc
--- a/src/cpu/minor/execute.cc  Tue Sep 09 04:36:43 2014 -0400
+++ b/src/cpu/minor/execute.cc  Fri Sep 12 10:22:46 2014 -0400
@@ -259,9 +259,9 @@
         } else {
             /* Branch prediction got the wrong target */
             DPRINTF(Branch, "Predicted a branch from 0x%x to 0x%x"
-                " but got the wrong target (actual: 0x%x) inst: %s\n",
-                inst->pc.instAddr(), inst->predictedTarget.instAddr(),
-                target.instAddr() *inst);
+                    " but got the wrong target (actual: 0x%x) inst: %s\n",
+                    inst->pc.instAddr(), inst->predictedTarget.instAddr(),
+                    target.instAddr(), *inst);
 
             reason = BranchData::BadlyPredictedBranchTarget;
         }
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to