From: Andreas Hansson Date: Fri, 12 Sep 2014 14:22:46 +0000 (-0400) Subject: minor: Fix typo in DPRINTF for Minor branch prediction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2b4906fc64984f9970186e6894f19f0f677a9fd4;p=gem5.git minor: Fix typo in DPRINTF for Minor branch prediction --- 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; }