summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorGalen Williamson <galen@vector35.com>2025-08-08 14:30:49 -0400
committerGalen Williamson <galen@vector35.com>2025-08-14 14:06:49 -0400
commit2aa2a28a341a2290fe0328a46dbe8e3d7bb3ba4d (patch)
tree54cb1a70bf0f99889fa18b2905b4f897d5460b6d /python/lowlevelil.py
parent193450bcf90800753aec316322ee651c5520ea57 (diff)
Corrected python docstring for LowLevelILFunction.float_convert
[thumb2] removed redundant format suffixes from disassembly of VFP instruction [thumb2] Corrected lifting of VCVT instruction
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 82a09603..65134939 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -5797,10 +5797,10 @@ class LowLevelILFunction:
loc: Optional['ILSourceLocation'] = None
) -> ExpressionIndex:
"""
- ``int_to_float`` converts floating point value of expression ``value`` to size ``size`` potentially setting flags
+ ``float_convert`` converts floating point value of expression ``value`` to size ``size`` potentially setting flags
:param int size: the size of the result in bytes
- :param ExpressionIndex value: the expression to negate
+ :param ExpressionIndex value: the expression to convert to a float of ``size`` bytes
:param str flags: optional, flags to set
:param ILSourceLocation loc: location of returned expression
:return: The expression ``fconvert.<size>{<flags>}(value)``