summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-09-03 02:05:44 -0400
committerGabe Black <gblack@eecs.umich.edu>2006-09-03 02:05:44 -0400
commit387bbe40d17dc99f4aeca494dfe7acc68ead8ec6 (patch)
treebb7841004cd252b69e508ebedb6959502b43dec9 /src
parent96dabdc9b0fbffbdf6fb7099f21924f4702d6f91 (diff)
downloadgem5-387bbe40d17dc99f4aeca494dfe7acc68ead8ec6.tar.xz
Fixing up parameters of getInstRecord
--HG-- extra : convert_revision : 4ce06ac4f7d135cc04b39cf0e957a2539c7e946d
Diffstat (limited to 'src')
-rw-r--r--src/cpu/ozone/front_end_impl.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/ozone/front_end_impl.hh b/src/cpu/ozone/front_end_impl.hh
index c9c5a869b..1b120460a 100644
--- a/src/cpu/ozone/front_end_impl.hh
+++ b/src/cpu/ozone/front_end_impl.hh
@@ -855,9 +855,9 @@ FrontEnd<Impl>::getInstFromCacheline()
instruction->staticInst->disassemble(PC));
instruction->traceData =
- Trace::getInstRecord(curTick, tc, cpu,
+ Trace::getInstRecord(curTick, tc,
instruction->staticInst,
- instruction->readPC(), 0);
+ instruction->readPC());
// Increment stat of fetched instructions.
++fetchedInsts;