aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/parseTools.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/parseTools.js b/src/parseTools.js
index 0f61b036..4a2ff3a8 100644
--- a/src/parseTools.js
+++ b/src/parseTools.js
@@ -1217,7 +1217,6 @@ function processMathop(item) { with(item) {
// We must sign them, so we do not compare -1 to 255 (could have unsigned them both too)
// since LLVM tells us if <=, >= etc. comparisons are signed, but not == and !=.
ident1 = makeSignOp(ident1, type, 're');
-
ident2 = makeSignOp(ident2, type, 're');
return ident1 + (variant === 'eq' ? '==' : '!=') + ident2;
}