summaryrefslogtreecommitdiff
path: root/cpu/exec_context.hh
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-02-21 01:01:16 -0500
committerRon Dreslinski <rdreslin@umich.edu>2006-02-21 01:01:16 -0500
commit75152fcaf709135d5f9668875234aed51d6334c4 (patch)
tree6ac63757a655e89dd0ed13b47f8e481fd6307de4 /cpu/exec_context.hh
parent33913542859fa2bef15765009ae33d5e724bb0b0 (diff)
downloadgem5-75152fcaf709135d5f9668875234aed51d6334c4.tar.xz
Get simple cpu to compile.
Now I need to fix linking errors, probably due to missing function details in new memory objects. cpu/exec_context.cc: cpu/exec_context.hh: Fix constructor for SE mode cpu/simple/cpu.cc: cpu/simple/cpu.hh: Fix compilation errors --HG-- extra : convert_revision : 6a58c0906340e10b654369c36f528fc17e3f19be
Diffstat (limited to 'cpu/exec_context.hh')
-rw-r--r--cpu/exec_context.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/exec_context.hh b/cpu/exec_context.hh
index 3d40c06f0..8e9e5f2fd 100644
--- a/cpu/exec_context.hh
+++ b/cpu/exec_context.hh
@@ -186,8 +186,8 @@ class ExecContext
ExecContext(BaseCPU *_cpu, int _thread_num, System *_system,
AlphaITB *_itb, AlphaDTB *_dtb, FunctionalMemory *_dem);
#else
- ExecContext(BaseCPU *_cpu, int _thread_num, System *_system,
- Memory *_mem, Process *_process, int _asid);
+ ExecContext(BaseCPU *_cpu, int _thread_num,
+ Process *_process, int _asid);
#endif
virtual ~ExecContext();