diff options
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 7c30df9d..9d515836 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -58,9 +58,9 @@ ExprId LowLevelILFunction::Nop() } -ExprId LowLevelILFunction::SetRegister(size_t size, uint32_t reg, ExprId val) +ExprId LowLevelILFunction::SetRegister(size_t size, uint32_t reg, ExprId val, uint32_t flags) { - return AddExpr(LLIL_SET_REG, size, 0, reg, val); + return AddExpr(LLIL_SET_REG, size, flags, reg, val); } |
