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

Method mark_label

python/lowlevelil.py:5857–5864  ·  view source on GitHub ↗

``mark_label`` assigns a LowLevelILLabel to the current IL address. :param LowLevelILLabel label: :rtype: None

(self, label: LowLevelILLabel)

Source from the content-addressed store, hash-verified

5855 return ExpressionIndex(core.BNLowLevelILIf(self.handle, operand, t.handle, f.handle))
5856
5857 def mark_label(self, label: LowLevelILLabel) -> None:
5858 """
5859 ``mark_label`` assigns a LowLevelILLabel to the current IL address.
5860
5861 :param LowLevelILLabel label:
5862 :rtype: None
5863 """
5864 core.BNLowLevelILMarkLabel(self.handle, label.handle)
5865
5866 def add_label_map(self, labels: Dict[int, LowLevelILLabel], loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex:
5867 """

Callers 1

cond_branchMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected