mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-12 10:00:01 +01:00
translate_arm: const-correctness (#6)
This commit is contained in:
parent
711b3e29d3
commit
ea157dfd52
@ -17,7 +17,7 @@
|
|||||||
namespace Dynarmic {
|
namespace Dynarmic {
|
||||||
namespace Arm {
|
namespace Arm {
|
||||||
|
|
||||||
static bool CondCanContinue(ConditionalState cond_state, IR::IREmitter& ir) {
|
static bool CondCanContinue(ConditionalState cond_state, const IR::IREmitter& ir) {
|
||||||
ASSERT_MSG(cond_state != ConditionalState::Break, "Should never happen.");
|
ASSERT_MSG(cond_state != ConditionalState::Break, "Should never happen.");
|
||||||
|
|
||||||
if (cond_state == ConditionalState::None)
|
if (cond_state == ConditionalState::None)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user