From 8cc5a889e7c87037ba3931b81d79b1bf343a5991 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Mon, 22 Sep 2025 18:18:49 -0400 Subject: small documentation update for llil call and call_stack_adjust instructions --- python/lowlevelil.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'python') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index 34deaaf1..565ca6a2 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -5251,8 +5251,8 @@ class LowLevelILFunction: def call(self, dest: ExpressionIndex, loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: """ - ``call`` returns an expression which first pushes the address of the next instruction onto the stack then jumps - (branches) to the expression ``dest`` + ``call`` returns an expression which (on architectures without a link register) first pushes the address of the + next instruction onto the stack then jumps (branches) to the expression ``dest`` :param ExpressionIndex dest: the expression to call :param ILSourceLocation loc: location of returned expression @@ -5269,9 +5269,8 @@ class LowLevelILFunction: loc: Optional['ILSourceLocation'] = None ) -> ExpressionIndex: """ - ``call_stack_adjust`` returns an expression which first pushes the address of the next instruction onto the stack - then jumps (branches) to the expression ``dest``. After the function exits, ``stack_adjust`` is added to the - stack pointer register. + ``call_stack_adjust`` returns an expression which (on architectures without a link register) first pushes the address of the next instruction onto the stack + then jumps (branches) to the expression ``dest``. After the function exits, ``stack_adjust`` is added to the stack pointer register. :param ExpressionIndex dest: the expression to call :param ILSourceLocation loc: location of returned expression -- cgit v1.3.1