Get rid of the unused get(Data|Inst)Asid and (inst|data)Asid functions.
This commit is contained in:
@@ -92,8 +92,8 @@ SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, System *_sys,
|
||||
}
|
||||
#else
|
||||
SimpleThread::SimpleThread(BaseCPU *_cpu, int _thread_num, Process *_process,
|
||||
TheISA::TLB *_itb, TheISA::TLB *_dtb, int _asid)
|
||||
: ThreadState(_cpu, _thread_num, _process, _asid),
|
||||
TheISA::TLB *_itb, TheISA::TLB *_dtb)
|
||||
: ThreadState(_cpu, _thread_num, _process),
|
||||
cpu(_cpu), itb(_itb), dtb(_dtb)
|
||||
{
|
||||
clearArchRegs();
|
||||
@@ -106,7 +106,7 @@ SimpleThread::SimpleThread()
|
||||
#if FULL_SYSTEM
|
||||
: ThreadState(NULL, -1)
|
||||
#else
|
||||
: ThreadState(NULL, -1, NULL, -1)
|
||||
: ThreadState(NULL, -1, NULL)
|
||||
#endif
|
||||
{
|
||||
tc = new ProxyThreadContext<SimpleThread>(this);
|
||||
|
||||
Reference in New Issue
Block a user