Merge pull request #10047 from jketema/fix-ir-comment

C++: Fix block assignment evaluation order comment in IR translation
This commit is contained in:
Jeroen Ketema
2022-08-15 14:01:48 +02:00
committed by GitHub

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()
}