diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 20:52:20 +0000 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-06-14 20:52:20 +0000 |
commit | 7219b6edd9bee154e9066c479774f10998cb1af7 (patch) | |
tree | 7be065cca6d78292b35b72134639f64a5affc78c /src/arch | |
parent | cb7934f0527d87270315d2688d0a1e457cb84f56 (diff) | |
parent | 5b5570e0bf78faec2ed253c9348639d3ae15e2ef (diff) | |
download | gem5-7219b6edd9bee154e9066c479774f10998cb1af7.tar.xz |
Merge zizzer.eecs.umich.edu:/bk/newmem
into ahchoo.blinky.homelinux.org:/home/gblack/m5/newmem-x86
--HG--
extra : convert_revision : ba718de4d676f6d0bd80c29de46be1f6a2f73feb
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/alpha/remote_gdb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/alpha/remote_gdb.cc b/src/arch/alpha/remote_gdb.cc index a68e5218e..ea5db36f4 100644 --- a/src/arch/alpha/remote_gdb.cc +++ b/src/arch/alpha/remote_gdb.cc @@ -284,7 +284,7 @@ RemoteGDB::setSingleStep() // User was stopped at pc, e.g. the instruction at pc was not // executed. MachInst inst = read<MachInst>(pc); - StaticInstPtr si(inst); + StaticInstPtr si(inst, pc); if (si->hasBranchTarget(pc, context, bpc)) { // Don't bother setting a breakpoint on the taken branch if it // is the same as the next pc |