summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-09-22 18:18:49 -0400
committerJordan Wiens <github@psifertex.com>2025-09-22 18:18:49 -0400
commit8cc5a889e7c87037ba3931b81d79b1bf343a5991 (patch)
tree82eb23a415fa1d09be19f3a940ee3341d7819728 /python/lowlevelil.py
parent1956f6953c2732fb368021d3c4b452df9e2825db (diff)
small documentation update for llil call and call_stack_adjust instructions
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py9
1 files changed, 4 insertions, 5 deletions
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