diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-09-03 02:10:05 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-09-03 02:10:05 -0400 |
commit | c32ef326d269e903b96d20887dafba65e06bee72 (patch) | |
tree | b266d4d930fc89402172f5888dd5f4cdf27bcc8f /src/cpu/o3/fetch_impl.hh | |
parent | 936d8c3e659442cfe810ccff911fb1aec31f9329 (diff) | |
download | gem5-c32ef326d269e903b96d20887dafba65e06bee72.tar.xz |
Fix up the parameters to getInstRecord
--HG--
extra : convert_revision : 0fac43035a2510d3a3f596d3d8f57193045570f6
Diffstat (limited to 'src/cpu/o3/fetch_impl.hh')
-rw-r--r-- | src/cpu/o3/fetch_impl.hh | 4 |
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); |