projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53a24b0
)
minor: Fix typo in DPRINTF for Minor branch prediction
author
Andreas Hansson
<andreas.hansson@arm.com>
Fri, 12 Sep 2014 14:22:46 +0000
(10:22 -0400)
committer
Andreas Hansson
<andreas.hansson@arm.com>
Fri, 12 Sep 2014 14:22:46 +0000
(10:22 -0400)
src/cpu/minor/execute.cc
patch
|
blob
|
history
diff --git
a/src/cpu/minor/execute.cc
b/src/cpu/minor/execute.cc
index 2a009a154cbcff896b56b025d0063b98a223c499..5679f55a7f0f36596f1bdd66af912bb6e3edfd9c 100644
(file)
--- a/
src/cpu/minor/execute.cc
+++ b/
src/cpu/minor/execute.cc
@@
-259,9
+259,9
@@
Execute::tryToBranch(MinorDynInstPtr inst, Fault fault, BranchData &branch)
} 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;
}