diff options
author | Vincentius Robby <acolyte@umich.edu> | 2007-06-14 16:52:19 -0400 |
---|---|---|
committer | Vincentius Robby <acolyte@umich.edu> | 2007-06-14 16:52:19 -0400 |
commit | 5b5570e0bf78faec2ed253c9348639d3ae15e2ef (patch) | |
tree | b884555f6affc655aea65225c541e01331303498 /src/cpu/base_dyn_inst_impl.hh | |
parent | 6641423a0b3b906a6fd943296d3c9ebbc3918374 (diff) | |
download | gem5-5b5570e0bf78faec2ed253c9348639d3ae15e2ef.tar.xz |
Modified instruction decode method.
Make code compatible with new decode method.
src/arch/alpha/remote_gdb.cc:
src/cpu/base_dyn_inst_impl.hh:
src/cpu/exetrace.cc:
src/cpu/simple/base.cc:
Make code compatible with new decode method.
src/cpu/static_inst.cc:
src/cpu/static_inst.hh:
Modified instruction decode method.
--HG--
extra : convert_revision : a9a6d3a16fff59bc95d0606ea344bd57e71b8d0a
Diffstat (limited to 'src/cpu/base_dyn_inst_impl.hh')
-rw-r--r-- | src/cpu/base_dyn_inst_impl.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/base_dyn_inst_impl.hh b/src/cpu/base_dyn_inst_impl.hh index a1c866336..216cc08ea 100644 --- a/src/cpu/base_dyn_inst_impl.hh +++ b/src/cpu/base_dyn_inst_impl.hh @@ -66,7 +66,7 @@ BaseDynInst<Impl>::BaseDynInst(TheISA::ExtMachInst machInst, Addr inst_PC, Addr inst_NPC, Addr pred_PC, Addr pred_NPC, InstSeqNum seq_num, ImplCPU *cpu) - : staticInst(machInst), traceData(NULL), cpu(cpu) + : staticInst(machInst, inst_PC), traceData(NULL), cpu(cpu) { seqNum = seq_num; |