From 2aa2a28a341a2290fe0328a46dbe8e3d7bb3ba4d Mon Sep 17 00:00:00 2001 From: Galen Williamson Date: Fri, 8 Aug 2025 14:30:49 -0400 Subject: Corrected python docstring for LowLevelILFunction.float_convert [thumb2] removed redundant format suffixes from disassembly of VFP instruction [thumb2] Corrected lifting of VCVT instruction --- python/lowlevelil.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python') 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.{}(value)`` -- cgit v1.3.1