summaryrefslogtreecommitdiff
path: root/src/cpu/thread_context.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-12 17:57:46 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-12 17:57:46 -0700
commitf245358343fb26ac976d15b8f2a023caa0f9ba0d (patch)
tree05fbddda0840cb8ae564f12e9a410617e866d19f /src/cpu/thread_context.hh
parentcefb768131b1d0582c5cbe83feaa97060dfe15af (diff)
downloadgem5-f245358343fb26ac976d15b8f2a023caa0f9ba0d.tar.xz
Get rid of old RegContext code.
Diffstat (limited to 'src/cpu/thread_context.hh')
-rw-r--r--src/cpu/thread_context.hh9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cpu/thread_context.hh b/src/cpu/thread_context.hh
index 9dffbd8c6..2b9f41b70 100644
--- a/src/cpu/thread_context.hh
+++ b/src/cpu/thread_context.hh
@@ -272,9 +272,6 @@ class ThreadContext
virtual int exit() { return 1; };
#endif
- virtual void changeRegFileContext(TheISA::RegContextParam param,
- TheISA::RegContextVal val) = 0;
-
/** function to compare two thread contexts (for debugging) */
static void compare(ThreadContext *one, ThreadContext *two);
};
@@ -467,12 +464,6 @@ class ProxyThreadContext : public ThreadContext
Counter readFuncExeInst() { return actualTC->readFuncExeInst(); }
#endif
-
- void changeRegFileContext(TheISA::RegContextParam param,
- TheISA::RegContextVal val)
- {
- actualTC->changeRegFileContext(param, val);
- }
};
#endif