diff options
| -rw-r--r-- | highlevelilinstruction.cpp | 2 | ||||
| -rw-r--r-- | mediumlevelilinstruction.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/highlevelilinstruction.cpp b/highlevelilinstruction.cpp index 610c9e63..b5c3e7ed 100644 --- a/highlevelilinstruction.cpp +++ b/highlevelilinstruction.cpp @@ -2682,7 +2682,7 @@ ExprId HighLevelILFunction::RotateLeft(size_t size, ExprId left, ExprId right, ExprId HighLevelILFunction::RotateLeftCarry(size_t size, ExprId left, ExprId right, ExprId carry, const ILSourceLocation& loc) { - return AddExprWithLocation(HLIL_RRC, loc, size, left, right, carry); + return AddExprWithLocation(HLIL_RLC, loc, size, left, right, carry); } diff --git a/mediumlevelilinstruction.cpp b/mediumlevelilinstruction.cpp index 28380704..0ff7323e 100644 --- a/mediumlevelilinstruction.cpp +++ b/mediumlevelilinstruction.cpp @@ -2446,7 +2446,7 @@ ExprId MediumLevelILFunction::RotateLeft(size_t size, ExprId left, ExprId right, ExprId MediumLevelILFunction::RotateLeftCarry(size_t size, ExprId left, ExprId right, ExprId carry, const ILSourceLocation& loc) { - return AddExprWithLocation(MLIL_RRC, loc, size, left, right, carry); + return AddExprWithLocation(MLIL_RLC, loc, size, left, right, carry); } |
