From 97fdc533b6ba68820652d9e8c2da36a92706dacf Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 10 Nov 2023 09:42:20 -0500 Subject: Update documentation for APIs that return IL Labels, fix GetLabelForAddress parameter --- lowlevelil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lowlevelil.cpp') 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); } -- cgit v1.3.1