mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12:00
Disabled call stack tracing when using the PPU LLVM recompiler
This commit is contained in:
parent
80294e1034
commit
5c468d7591
4 changed files with 8 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue