diff options
| author | Dusk Banks <me@bb010g.com> | 2025-01-28 22:11:14 -0800 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2025-02-03 08:59:25 -0500 |
| commit | f6db8b030153a27a8da1b794c3330b46ceeda894 (patch) | |
| tree | 2c8ee1cdf9557b78ce48d8e5710e1884fb3ceefe /python/lowlevelil.py | |
| parent | 07dec2953456f5a6bee6100498eeebdfcb1964a7 (diff) | |
Fix documentation around `LLIL_MUL`
`mul` is aligned with at least what x86 returns for tokens.
Signed-off-by: Dusk Banks <me@bb010g.com>
Diffstat (limited to 'python/lowlevelil.py')
| -rw-r--r-- | python/lowlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py index dbb9f154..4282a96f 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -4375,7 +4375,7 @@ class LowLevelILFunction: :param ExpressionIndex a: LHS expression :param ExpressionIndex b: RHS expression :param str flags: optional, flags to set - :return: The expression ``sbc.<size>{<flags>}(a, b)`` + :return: The expression ``mul.<size>{<flags>}(a, b)`` :rtype: ExpressionIndex """ return self.expr(LowLevelILOperation.LLIL_MUL, a, b, size=size, flags=flags) |
