Returns an expression that does any pre-incrementing on an operand, if it exists */
| 283 | |
| 284 | /* Returns an expression that does any pre-incrementing on an operand, if it exists */ |
| 285 | static ExprId GetILOperandPreIndex(LowLevelILFunction& il, InstructionOperand& operand) |
| 286 | { |
| 287 | if (operand.operandClass != MEM_PRE_IDX) |
| 288 | return 0; |
| 289 | |
| 290 | return GetILOperandPreOrPostIndex(il, operand); |
| 291 | } |
| 292 | |
| 293 | /* Returns an expression that does any post-incrementing on an operand, if it exists */ |
| 294 | static ExprId GetILOperandPostIndex(LowLevelILFunction& il, InstructionOperand& operand) |
no test coverage detected