diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-08-24 18:30:15 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-08-24 18:30:15 -0700 |
commit | 51c74c1c724281fac1f3f22fc10d7e6c38feb7b8 (patch) | |
tree | a1c451512c788d49fb40ec3eae76bfd691c605fb | |
parent | 59bec26c032f31f07458d141f064c075e339484b (diff) |
whitespace
-rw-r--r-- | src/parseTools.js | 1 |
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; } |