summaryrefslogtreecommitdiff
path: root/src/arch/power/utility.hh
diff options
context:
space:
mode:
authorTimothy M. Jones <tjones1@inf.ed.ac.uk>2010-07-22 18:47:03 +0100
committerTimothy M. Jones <tjones1@inf.ed.ac.uk>2010-07-22 18:47:03 +0100
commit8c76715979682cbf0e653128c253805a80c40269 (patch)
tree76ed1be4d3567036bc1e6d977022b31bcfdab9c3 /src/arch/power/utility.hh
parent21bf6ff1019cb1334596da8488268eeaea3753cc (diff)
downloadgem5-8c76715979682cbf0e653128c253805a80c40269.tar.xz
Power: Provide a utility function to copy registers from one thread context
to another in the Power ISA.
Diffstat (limited to 'src/arch/power/utility.hh')
-rw-r--r--src/arch/power/utility.hh8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/arch/power/utility.hh b/src/arch/power/utility.hh
index 442075aa2..6263635e9 100644
--- a/src/arch/power/utility.hh
+++ b/src/arch/power/utility.hh
@@ -101,16 +101,12 @@ checkFpEnableFault(XC *xc)
return NoFault;
}
-static inline void
-copyRegs(ThreadContext *src, ThreadContext *dest)
-{
- panic("Copy Regs Not Implemented Yet\n");
-}
+void
+copyRegs(ThreadContext *src, ThreadContext *dest);
static inline void
copyMiscRegs(ThreadContext *src, ThreadContext *dest)
{
- panic("Copy Misc. Regs Not Implemented Yet\n");
}
} // PowerISA namespace