diff options
| author | Galen Williamson <galen@vector35.com> | 2025-08-08 14:30:49 -0400 |
|---|---|---|
| committer | Galen Williamson <galen@vector35.com> | 2025-08-14 14:06:49 -0400 |
| commit | 2aa2a28a341a2290fe0328a46dbe8e3d7bb3ba4d (patch) | |
| tree | 54cb1a70bf0f99889fa18b2905b4f897d5460b6d /python/lowlevelil.py | |
| parent | 193450bcf90800753aec316322ee651c5520ea57 (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.py | 4 |
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)`` |
