MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / nop

Method nop

python/mediumlevelil.py:3622–3630  ·  view source on GitHub ↗

``nop`` no operation, this instruction does nothing :param loc: Location of expression :return: The no operation expression :rtype: ExpressionIndex

(self, loc: Optional['ILSourceLocation'] = None)

Source from the content-addressed store, hash-verified

3620 return core.BNMediumLevelILAddInstruction(self.handle, expr)
3621
3622 def nop(self, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex:
3623 """
3624 ``nop`` no operation, this instruction does nothing
3625
3626 :param loc: Location of expression
3627 :return: The no operation expression
3628 :rtype: ExpressionIndex
3629 """
3630 return self.expr(MediumLevelILOperation.MLIL_NOP, source_location=loc)
3631
3632 def set_var(
3633 self, size: int, dest: 'variable.Variable', src: ExpressionIndex,

Callers

nothing calls this directly

Calls 1

exprMethod · 0.95

Tested by

no test coverage detected