mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-18 18:26:27 +01:00
DSPEmitter: Make FlagsNeeded() a const member function
This doesn't modify any class data.
This commit is contained in:
parent
a8459fc189
commit
12e335025d
@ -90,7 +90,7 @@ void DSPEmitter::checkExceptions(u32 retval)
|
|||||||
SetJumpTarget(skipCheck);
|
SetJumpTarget(skipCheck);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool DSPEmitter::FlagsNeeded()
|
bool DSPEmitter::FlagsNeeded() const
|
||||||
{
|
{
|
||||||
const u8 flags = DSPAnalyzer::GetCodeFlags(compilePC);
|
const u8 flags = DSPAnalyzer::GetCodeFlags(compilePC);
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ public:
|
|||||||
Block CompileStub();
|
Block CompileStub();
|
||||||
void Compile(u16 start_addr);
|
void Compile(u16 start_addr);
|
||||||
|
|
||||||
bool FlagsNeeded();
|
bool FlagsNeeded() const;
|
||||||
|
|
||||||
void FallBackToInterpreter(UDSPInstruction inst);
|
void FallBackToInterpreter(UDSPInstruction inst);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user