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"