C++: Use 'operandNode' to generate the string for indirect operands.

This commit is contained in:
Mathias Vorreiter Pedersen
2023-08-18 12:15:44 +01:00
parent f1c4fa2345
commit cca6052026

View File

@@ -957,7 +957,7 @@ class RawIndirectOperand extends Node, TRawIndirectOperand {
}
override string toStringImpl() {
result = instructionNode(this.getOperand().getDef()).toStringImpl() + " indirection"
result = operandNode(this.getOperand()).toStringImpl() + " indirection"
}
}