summaryrefslogtreecommitdiff
path: root/lowlevelil.cpp
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2023-11-10 09:42:20 -0500
committerPeter LaFosse <peter@vector35.com>2023-11-10 11:29:24 -0500
commit97fdc533b6ba68820652d9e8c2da36a92706dacf (patch)
treece7b300f394200da0075fc455ab3da72496d7250 /lowlevelil.cpp
parentf5c2cb477ddc76785336b269f6fb89f8473b726b (diff)
Update documentation for APIs that return IL Labels, fix GetLabelForAddress parameter
Diffstat (limited to 'lowlevelil.cpp')
-rw-r--r--lowlevelil.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp
index fdb59535..e68f8246 100644
--- a/lowlevelil.cpp
+++ b/lowlevelil.cpp
@@ -599,13 +599,13 @@ void LowLevelILFunction::SetExprAttributes(size_t expr, uint32_t attributes)
}
-void LowLevelILFunction::AddLabelForAddress(Architecture* arch, ExprId addr)
+void LowLevelILFunction::AddLabelForAddress(Architecture* arch, uint64_t addr)
{
BNAddLowLevelILLabelForAddress(m_object, arch->GetObject(), addr);
}
-BNLowLevelILLabel* LowLevelILFunction::GetLabelForAddress(Architecture* arch, ExprId addr)
+BNLowLevelILLabel* LowLevelILFunction::GetLabelForAddress(Architecture* arch, uint64_t addr)
{
return BNGetLowLevelILLabelForAddress(m_object, arch->GetObject(), addr);
}