diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-08-02 12:04:18 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-08-02 12:04:18 -0400 |
commit | 8d220c5c1024bc80c4f1365bc4ef542480acaac5 (patch) | |
tree | 8eb57e25f6e7eb713561aa8a324f7a04b67c600c /cpu | |
parent | db6c908e0fe5c82d1c165d8582ed876445d20b3d (diff) | |
download | gem5-8d220c5c1024bc80c4f1365bc4ef542480acaac5.tar.xz |
Updates for registers and stuff.
arch/alpha/ev5.cc:
Update for copying IPRs.
arch/alpha/isa_traits.hh:
Allow for misc register file to serialize. Also add some register copying code.
cpu/cpu_exec_context.cc:
Use ISA's function to copy registers.
--HG--
extra : convert_revision : 09fa3b2b1b229cbf3a34f69354953da2607c2a8f
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/cpu_exec_context.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/cpu_exec_context.cc b/cpu/cpu_exec_context.cc index e30295ef8..e28c34f88 100644 --- a/cpu/cpu_exec_context.cc +++ b/cpu/cpu_exec_context.cc @@ -306,7 +306,7 @@ CPUExecContext::copyArchRegs(ExecContext *xc) } // Copy misc. registers - regs.miscRegs.copyMiscRegs(xc); + TheISA::copyMiscRegs(xc, proxy); // Lastly copy PC/NPC setPC(xc->readPC()); |