Skip to content

Commit

Permalink
removed unused helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS committed May 14, 2020
1 parent 377dce3 commit 86738c8
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions m2cgen/assemblers/utils.py
Expand Up @@ -31,18 +31,10 @@ def gt(l, r):
return ast.CompExpr(l, r, ast.CompOpType.GT)


def gte(l, r):
return ast.CompExpr(l, r, ast.CompOpType.GTE)


def eq(l, r):
return ast.CompExpr(l, r, ast.CompOpType.EQ)


def ne(l, r):
return ast.CompExpr(l, r, ast.CompOpType.NOT_EQ)


BIN_EXPR_CLASSES = {
(False, False): ast.BinNumExpr,
(True, True): ast.BinVectorExpr,
Expand Down

0 comments on commit 86738c8

Please sign in to comment.