mirror of
https://github.com/irmen/prog8.git
synced 2025-06-12 11:38:02 +00:00
optimize if-else handling of asmsub boolean result in status flags
This commit is contained in:
@ -103,7 +103,7 @@ class PtIfElse(position: Position) : PtNode(position) {
|
||||
|
||||
class PtJump(val identifier: PtIdentifier?,
|
||||
val address: UInt?,
|
||||
val generatedLabel: String?,
|
||||
val generatedLabel: String?, // TODO remove this ? always uses identifier...
|
||||
position: Position) : PtNode(position) {
|
||||
init {
|
||||
identifier?.let {it.parent = this }
|
||||
|
@ -120,7 +120,7 @@ enum class BranchCondition {
|
||||
PL, // PL == POS
|
||||
POS,
|
||||
VS,
|
||||
VC,
|
||||
VC
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user