Make CFG for AssignExpr visit left operand before right

This commit is contained in:
Nick Rolfe
2021-03-19 14:25:38 +00:00
parent f381f94bc2
commit c6958f64e4
2 changed files with 135 additions and 135 deletions

View File

@@ -353,9 +353,9 @@ module Trees {
private class AssignmentTree extends StandardPostOrderTree, AssignExpr {
final override ControlFlowTree getChildNode(int i) {
result = this.getRightOperand() and i = 0
result = this.getLeftOperand() and i = 0
or
result = this.getLeftOperand() and i = 1
result = this.getRightOperand() and i = 1
}
}