From 2b4906fc64984f9970186e6894f19f0f677a9fd4 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Fri, 12 Sep 2014 10:22:46 -0400 Subject: minor: Fix typo in DPRINTF for Minor branch prediction --- src/cpu/minor/execute.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cpu/minor/execute.cc') diff --git a/src/cpu/minor/execute.cc b/src/cpu/minor/execute.cc index 2a009a154..5679f55a7 100644 --- 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; } -- cgit v1.2.3