summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-09-03 02:10:05 -0400
committerGabe Black <gblack@eecs.umich.edu>2006-09-03 02:10:05 -0400
commitc32ef326d269e903b96d20887dafba65e06bee72 (patch)
treeb266d4d930fc89402172f5888dd5f4cdf27bcc8f /src/cpu
parent936d8c3e659442cfe810ccff911fb1aec31f9329 (diff)
downloadgem5-c32ef326d269e903b96d20887dafba65e06bee72.tar.xz
Fix up the parameters to getInstRecord
--HG-- extra : convert_revision : 0fac43035a2510d3a3f596d3d8f57193045570f6
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/o3/fetch_impl.hh4
1 files changed, 2 insertions, 2 deletions
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<Impl>::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);