Fixes comparison between different enumeration types.
This commit is contained in:
parent
381aaa1509
commit
14e5896e37
|
@ -33490,7 +33490,7 @@ bool NativeCodeBasicBlock::MoveLoadLogicStoreAbsUp(int at)
|
||||||
|
|
||||||
if (mIns[j].ChangesZeroPage(mIns[at + 0].mAddress))
|
if (mIns[j].ChangesZeroPage(mIns[at + 0].mAddress))
|
||||||
return false;
|
return false;
|
||||||
if (mIns[at + 1].mType == ASMIM_ZERO_PAGE && mIns[j].ChangesZeroPage(mIns[at + 1].mAddress))
|
if (mIns[at + 1].mMode == ASMIM_ZERO_PAGE && mIns[j].ChangesZeroPage(mIns[at + 1].mAddress))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (mIns[j].UsesMemoryOf(mIns[at + 2]))
|
if (mIns[j].UsesMemoryOf(mIns[at + 2]))
|
||||||
|
|
Loading…
Reference in New Issue