summaryrefslogtreecommitdiff
path: root/highlevelilinstruction.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2020-04-20 17:25:55 -0400
committerRusty Wagner <rusty@vector35.com>2020-04-20 17:47:46 -0400
commitcbeab416149ca94692826497867b7f7150d97be5 (patch)
tree558bfdd531b44cdb2cb146786e357fbb3c4452c9 /highlevelilinstruction.cpp
parent77282a3b432aeb53a115a10f9f20802019c4609b (diff)
Fix typo in rotate left with carry
Diffstat (limited to 'highlevelilinstruction.cpp')
-rw-r--r--highlevelilinstruction.cpp2
1 files changed, 1 insertions, 1 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);
}