From 85c80a19b1ff2ff3db880b49ec76dac65f40c1d2 Mon Sep 17 00:00:00 2001 From: Raphael Roberts Date: Wed, 19 May 2021 19:44:26 -0500 Subject: [PATCH] Change shift shr with shl --- c2logic/consts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c2logic/consts.py b/c2logic/consts.py index 2662c76..8da1fc6 100644 --- a/c2logic/consts.py +++ b/c2logic/consts.py @@ -11,8 +11,8 @@ binary_ops = { "<=": "lessThanEq", ">": "greaterThan", ">=": "greaterThanEq", - ">>": "shl", - "<<": "shr", + ">>": "shr", + "<<": "shl", "|": "or", "&": "and", "^": "xor"