summaryrefslogtreecommitdiff
path: root/src/cpu/o3/mips/dyn_inst.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-12-20 22:14:40 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-12-20 22:14:40 -0500
commit68a0e6f2e94dbf4e2533924794d70b7476bee570 (patch)
tree28e1be56240001b73ec6302e8e5ec8f66280f7d5 /src/cpu/o3/mips/dyn_inst.hh
parent327f451eb758b925fe64d7e8d1d6b27bd97fb692 (diff)
downloadgem5-68a0e6f2e94dbf4e2533924794d70b7476bee570.tar.xz
Fixes to get MIPS_SE to compile.
--HG-- extra : convert_revision : d173f212841341e436e9a38dcd3006d27886c1b8
Diffstat (limited to 'src/cpu/o3/mips/dyn_inst.hh')
-rwxr-xr-xsrc/cpu/o3/mips/dyn_inst.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/cpu/o3/mips/dyn_inst.hh b/src/cpu/o3/mips/dyn_inst.hh
index 009a08012..f53530908 100755
--- a/src/cpu/o3/mips/dyn_inst.hh
+++ b/src/cpu/o3/mips/dyn_inst.hh
@@ -70,8 +70,10 @@ class MipsDynInst : public BaseDynInst<Impl>
public:
/** BaseDynInst constructor given a binary instruction. */
- MipsDynInst(ExtMachInst inst, Addr PC, Addr Pred_PC, InstSeqNum seq_num,
- O3CPU *cpu);
+ MipsDynInst(ExtMachInst inst,
+ Addr PC, Addr NPC,
+ Addr Pred_PC, Addr Pred_NPC,
+ InstSeqNum seq_num, O3CPU *cpu);
/** BaseDynInst constructor given a static inst pointer. */
MipsDynInst(StaticInstPtr &_staticInst);