diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-05-04 17:24:16 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-05-04 17:24:16 -0400 |
| commit | 9cfee428e755caee9c3e8979fd1b68a669ccb51a (patch) | |
| tree | b02082844b94c98801433d06d9daa8a8a1056aa6 /python/mediumlevelil.py | |
| parent | 003dc685f6d44f55e6975b5a9f9403def5dac6eb (diff) | |
Remove APIs that don't actually exist
Diffstat (limited to 'python/mediumlevelil.py')
| -rw-r--r-- | python/mediumlevelil.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 8b2a4c89..857d8cff 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -1012,18 +1012,6 @@ class MediumLevelILFunction(object): operand_list[i] = operands[i] return MediumLevelILExpr(core.BNMediumLevelILAddOperandList(self.handle, operand_list, len(operands))) - def operand(self, n, expr): - """ - ``operand`` sets the operand number of the expression ``expr`` and passes back ``expr`` without modification. - - :param int n: - :param MediumLevelILExpr expr: - :return: returns the expression ``expr`` unmodified - :rtype: MediumLevelILExpr - """ - core.BNMediumLevelILSetExprSourceOperand(self.handle, expr.index, n) - return expr - def finalize(self): """ ``finalize`` ends the function and computes the list of basic blocks. |
