From 0308673186697096324034283214185725457283 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Wed, 11 Jun 2025 23:52:00 -0400 Subject: Fix RegisterStackFreeTopRelative opcode typo --- lowlevelilinstruction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lowlevelilinstruction.cpp') diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp index db085957..516f2ad2 100644 --- a/lowlevelilinstruction.cpp +++ b/lowlevelilinstruction.cpp @@ -3035,7 +3035,7 @@ ExprId LowLevelILFunction::RegisterStackFreeReg(uint32_t reg, const ILSourceLoca ExprId LowLevelILFunction::RegisterStackFreeTopRelative(uint32_t regStack, ExprId entry, const ILSourceLocation& loc) { - return AddExprWithLocation(LLIL_REG_STACK_FREE_REG, loc, 0, 0, regStack, entry); + return AddExprWithLocation(LLIL_REG_STACK_FREE_REL, loc, 0, 0, regStack, entry); } -- cgit v1.3.1