diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 17:57:46 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-12 17:57:46 -0700 |
commit | f245358343fb26ac976d15b8f2a023caa0f9ba0d (patch) | |
tree | 05fbddda0840cb8ae564f12e9a410617e866d19f /src/cpu/o3 | |
parent | cefb768131b1d0582c5cbe83feaa97060dfe15af (diff) | |
download | gem5-f245358343fb26ac976d15b8f2a023caa0f9ba0d.tar.xz |
Get rid of old RegContext code.
Diffstat (limited to 'src/cpu/o3')
-rwxr-xr-x | src/cpu/o3/thread_context.hh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/cpu/o3/thread_context.hh b/src/cpu/o3/thread_context.hh index d92f85317..c529b002b 100755 --- a/src/cpu/o3/thread_context.hh +++ b/src/cpu/o3/thread_context.hh @@ -281,15 +281,6 @@ class O3ThreadContext : public ThreadContext this->cpu->setNextNPC(val, this->thread->readTid()); } - virtual void changeRegFileContext(TheISA::RegContextParam param, - TheISA::RegContextVal val) - { -#if THE_ISA != SPARC_ISA - panic("changeRegFileContext not implemented."); -#endif - } - - /** This function exits the thread context in the CPU and returns * 1 if the CPU has no more active threads (meaning it's OK to exit); * Used in syscall-emulation mode when a thread executes the 'exit' |