Disabled call stack tracing when using the PPU LLVM recompiler

This commit is contained in:
S Gopal Rajagopal 2014-11-09 11:50:01 +05:30
parent 80294e1034
commit 5c468d7591
4 changed files with 8 additions and 2 deletions

View file

@ -43,6 +43,8 @@ protected:
CPUDecoder* m_dec;
bool m_trace_call_stack;
public:
virtual void InitRegs()=0;
@ -177,6 +179,8 @@ public:
u32 GetId() const { return m_id; }
CPUThreadType GetType() const { return m_type; }
void SetCallStackTracing(bool trace_call_stack) { m_trace_call_stack = trace_call_stack; }
void Reset();
void Close();
void Run();