summaryrefslogtreecommitdiff
path: root/lowlevelilinstruction.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2017-10-23 21:45:37 -0400
committerRusty Wagner <rusty@vector35.com>2017-10-23 21:45:37 -0400
commitd5db0ddb807265b295bb6b4ff07613776945c92b (patch)
tree9bdd08b635d37d7133e7a28579c23c350d14867a /lowlevelilinstruction.cpp
parent95a7be141a07a20b8465981b01116fcafb6b5f41 (diff)
Top relative register stack access as a normal register
Diffstat (limited to 'lowlevelilinstruction.cpp')
-rw-r--r--lowlevelilinstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp
index 4130dd2a..91af36b1 100644
--- a/lowlevelilinstruction.cpp
+++ b/lowlevelilinstruction.cpp
@@ -2179,7 +2179,7 @@ ExprId LowLevelILFunction::SetRegisterStackTopRelativeSSA(size_t size, uint32_t
ExprId LowLevelILFunction::SetRegisterStackAbsoluteSSA(size_t size, uint32_t regStack,
size_t destVersion, size_t srcVersion, uint32_t reg, ExprId val, const ILSourceLocation& loc)
{
- return AddExprWithLocation(LLIL_SET_REG_STACK_REL_SSA, loc, size, 0,
+ return AddExprWithLocation(LLIL_SET_REG_STACK_ABS_SSA, loc, size, 0,
AddExprWithLocation(LLIL_REG_STACK_DEST_SSA, loc, size, 0, regStack, destVersion, srcVersion),
reg, val);
}