diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-03-03 16:04:34 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-03-03 16:04:34 -0500 |
commit | fc664f7ca6d4883e9efe7fb823cd903a867af7a9 (patch) | |
tree | 611a86dd02addcf7c44255aa66d7e2607dab0339 /cpu/simple | |
parent | 9ad917858763bb44c8e6e22b7bb370fd50d518df (diff) | |
parent | 14b6cd39aadcac72e8fce47e24445037bae70309 (diff) | |
download | gem5-fc664f7ca6d4883e9efe7fb823cd903a867af7a9.tar.xz |
Merge ktlim@zizzer:/bk/m5
into zamp.eecs.umich.edu:/z/ktlim2/m5-shadowregs
--HG--
extra : convert_revision : 979ab1fc4e1ea4d6a78ac9a2ec894f0be4feb01d
Diffstat (limited to 'cpu/simple')
-rw-r--r-- | cpu/simple/cpu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/simple/cpu.cc b/cpu/simple/cpu.cc index ca5d54694..11d76ef9b 100644 --- a/cpu/simple/cpu.cc +++ b/cpu/simple/cpu.cc @@ -762,7 +762,7 @@ SimpleCPU::tick() // decode the instruction inst = gtoh(inst); - curStaticInst = StaticInst::decode(inst); + curStaticInst = StaticInst::decode(makeExtMI(inst, xc->readPC())); traceData = Trace::getInstRecord(curTick, xc, this, curStaticInst, xc->regs.pc); |