``nop`` no operation, this instruction does nothing :param ILSourceLocation loc: location of returned expression :return: The no operation expression :rtype: ExpressionIndex
(self, loc: Optional['ILSourceLocation'] = None)
| 4188 | return core.BNLowLevelILAddInstruction(self.handle, expr) |
| 4189 | |
| 4190 | def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 4191 | """ |
| 4192 | ``nop`` no operation, this instruction does nothing |
| 4193 | |
| 4194 | :param ILSourceLocation loc: location of returned expression |
| 4195 | :return: The no operation expression |
| 4196 | :rtype: ExpressionIndex |
| 4197 | """ |
| 4198 | return self.expr(LowLevelILOperation.LLIL_NOP, source_location=loc) |
| 4199 | |
| 4200 | def set_reg( |
| 4201 | self, size: int, reg: 'architecture.RegisterType', value: ExpressionIndex, |
no test coverage detected