C++: Fix block assignment evaluation order comment in IR translation

This commit is contained in:
Jeroen Ketema
2022-08-15 11:58:57 +02:00
parent dfde5712a3
commit 6c4685e538

View File

@@ -1501,7 +1501,7 @@ class TranslatedBlockAssignExpr extends TranslatedNonConstantExpr {
}
final override Instruction getFirstInstruction() {
// The operand evaluation order should since block assignments behave like memcpy.
// The operand evaluation order should not matter since block assignments behave like memcpy.
result = this.getLeftOperand().getFirstInstruction()
}