diff options
author | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:33 -0400 |
---|---|---|
committer | Korey Sewell <ksewell@umich.edu> | 2011-06-19 21:43:33 -0400 |
commit | 19e3eb29154ad17664bfe239423f6ba64c77cf05 (patch) | |
tree | 09a44df5a2e149eee37c2985278abf747ce64d58 /src/cpu/inorder/thread_state.hh | |
parent | b2e5152e164d3d470e2887c9c4d0b17b0c3946cc (diff) | |
download | gem5-19e3eb29154ad17664bfe239423f6ba64c77cf05.tar.xz |
inorder: use flattenIdx for reg indexing
- also use "threadId()" instead of readTid() everywhere
- this will help support more complex ISA indexing
Diffstat (limited to 'src/cpu/inorder/thread_state.hh')
-rw-r--r-- | src/cpu/inorder/thread_state.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/inorder/thread_state.hh b/src/cpu/inorder/thread_state.hh index 20ace6659..227097569 100644 --- a/src/cpu/inorder/thread_state.hh +++ b/src/cpu/inorder/thread_state.hh @@ -104,10 +104,6 @@ class InOrderThreadState : public ThreadState { /** Returns a pointer to the TC of this thread. */ ThreadContext *getTC() { return tc; } - - /** Return the thread id */ - int readTid() { return threadId(); } - /** Is last instruction graduated a branch? */ bool lastGradIsBranch; |