summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/highlevelil.py2
-rw-r--r--python/lowlevelil.py2
-rw-r--r--python/mediumlevelil.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index c35fdd12..4ea2aa8f 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -40,7 +40,7 @@ from . import variable
from .interaction import show_graph_report
from .commonil import (
BaseILInstruction, Tailcall, Syscall, Localcall, Comparison, Signed, UnaryOperation, BinaryOperation, SSA, Phi,
- Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint
+ Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint, Intrinsic
)
LinesType = Generator['function.DisassemblyTextLine', None, None]
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index cdcd1138..f20ad68f 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -39,7 +39,7 @@ from .interaction import show_graph_report
from .commonil import (
BaseILInstruction, Constant, BinaryOperation, Tailcall, UnaryOperation, Comparison, SSA, Phi, FloatingPoint,
ControlFlow, Terminal, Syscall, Localcall, StackOperation, Return, Signed, Arithmetic, Carry, DoublePrecision,
- Memory, Load, Store, RegisterStack, SetReg
+ Memory, Load, Store, RegisterStack, SetReg, Intrinsic
)
ExpressionIndex = NewType('ExpressionIndex', int)
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index 7a8a92d4..8daed42b 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -40,7 +40,7 @@ from .interaction import show_graph_report
from .commonil import (
BaseILInstruction, Constant, BinaryOperation, UnaryOperation, Comparison, SSA, Phi, FloatingPoint, ControlFlow,
Terminal, Call, Localcall, Syscall, Tailcall, Return, Signed, Arithmetic, Carry, DoublePrecision, Memory, Load,
- Store, RegisterStack, SetVar
+ Store, RegisterStack, SetVar, Intrinsic
)
TokenList = List['function.InstructionTextToken']