mirror of
https://github.com/KarolS/millfork.git
synced 2025-08-15 19:27:22 +00:00
6502: correctly optimize code before BIT instructions
This commit is contained in:
@@ -105,7 +105,7 @@ object ReverseFlowAnalyzerPerOpcode {
|
||||
}),
|
||||
BIT -> (currentImportance => {
|
||||
currentImportance.copy(
|
||||
a = currentImportance.z,
|
||||
a = currentImportance.a ~ currentImportance.z,
|
||||
n = Unimportant,
|
||||
z = Unimportant,
|
||||
v = Unimportant,
|
||||
|
Reference in New Issue
Block a user