From cbeab416149ca94692826497867b7f7150d97be5 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 20 Apr 2020 17:25:55 -0400 Subject: Fix typo in rotate left with carry --- highlevelilinstruction.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'highlevelilinstruction.cpp') 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); } -- cgit v1.3.1