| 2225 | |
| 2226 | |
| 2227 | HighLevelILInstruction HighLevelILInstruction::GetRightExpr() const |
| 2228 | { |
| 2229 | size_t operandIndex; |
| 2230 | if (GetOperandIndexForUsage(RightExprHighLevelOperandUsage, operandIndex)) |
| 2231 | return GetRawOperandAsExpr(operandIndex); |
| 2232 | throw HighLevelILInstructionAccessException(); |
| 2233 | } |
| 2234 | |
| 2235 | |
| 2236 | HighLevelILInstruction HighLevelILInstruction::GetCarryExpr() const |
no test coverage detected