From: Gabe Black Date: Sun, 3 Sep 2006 06:10:05 +0000 (-0400) Subject: Fix up the parameters to getInstRecord X-Git-Tag: m5_2.0_beta2~117^2~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c32ef326d269e903b96d20887dafba65e06bee72;p=gem5.git Fix up the parameters to getInstRecord --HG-- extra : convert_revision : 0fac43035a2510d3a3f596d3d8f57193045570f6 --- diff --git a/src/cpu/o3/fetch_impl.hh b/src/cpu/o3/fetch_impl.hh index 25be9d455..1a31f58e4 100644 --- a/src/cpu/o3/fetch_impl.hh +++ b/src/cpu/o3/fetch_impl.hh @@ -1129,9 +1129,9 @@ DefaultFetch::fetch(bool &status_change) tid, instruction->staticInst->disassemble(fetch_PC)); instruction->traceData = - Trace::getInstRecord(curTick, cpu->tcBase(tid), cpu, + Trace::getInstRecord(curTick, cpu->tcBase(tid), instruction->staticInst, - instruction->readPC(),tid); + instruction->readPC()); predicted_branch = lookupAndUpdateNextPC(instruction, next_PC, next_NPC);