summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-10-06 00:10:54 +0200
committerAraq <rumpf_a@web.de>2013-10-06 00:10:54 +0200
commit27215e89f92e039afa166bd8c2c76047595d3f85 (patch)
tree29668a9201a5c263804b9f54967bca43370ce31b /compiler
parentac474a281204fbbc5cfa817106c0b4c745240f18 (diff)
parentcb1a278e001fe2a511e28ed95fdda2f58d0a4795 (diff)
downloadNim-27215e89f92e039afa166bd8c2c76047595d3f85.tar.gz
Merge branch 'master' of https://github.com/Araq/Nimrod
Diffstat (limited to 'compiler')
-rw-r--r--compiler/jsgen.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/jsgen.nim b/compiler/jsgen.nim
index eadad27d0..fec14870e 100644
--- a/compiler/jsgen.nim
+++ b/compiler/jsgen.nim
@@ -302,12 +302,12 @@ const # magic checked op; magic unchecked op; checked op; unchecked op
     ["", "", "($1 <= $2)", "($1 <= $2)"], # LeB
     ["", "", "($1 < $2)", "($1 < $2)"], # LtB
     ["", "", "($1 == $2)", "($1 == $2)"], # EqRef
-    ["", "", "($1 == $2)", "($1 == $2)"], # EqProc
     ["", "", "($1 == $2)", "($1 == $2)"], # EqUntracedRef
     ["", "", "($1 <= $2)", "($1 <= $2)"], # LePtr
     ["", "", "($1 < $2)", "($1 < $2)"], # LtPtr
     ["", "", "($1 == $2)", "($1 == $2)"], # EqCString
     ["", "", "($1 != $2)", "($1 != $2)"], # Xor
+    ["", "", "($1 == $2)", "($1 == $2)"], # EqProc
     ["NegInt", "", "NegInt($1)", "-($1)"], # UnaryMinusI
     ["NegInt64", "", "NegInt64($1)", "-($1)"], # UnaryMinusI64
     ["AbsInt", "", "AbsInt($1)", "Math.abs($1)"], # AbsI
@@ -402,12 +402,12 @@ const # magic checked op; magic unchecked op; checked op; unchecked op
     ["", "", "($1 <= $2)", "($1 <= $2)"], # LeB
     ["", "", "($1 < $2)", "($1 < $2)"], # LtB
     ["", "", "($1 == $2)", "($1 == $2)"], # EqRef
-    ["", "", "($1 == $2)", "($1 == $2)"], # EqProc
     ["", "", "($1 == $2)", "($1 == $2)"], # EqUntracedRef
     ["", "", "($1 <= $2)", "($1 <= $2)"], # LePtr
     ["", "", "($1 < $2)", "($1 < $2)"], # LtPtr
     ["", "", "($1 == $2)", "($1 == $2)"], # EqCString
     ["", "", "($1 != $2)", "($1 != $2)"], # Xor
+    ["", "", "($1 == $2)", "($1 == $2)"], # EqProc
     ["NegInt", "", "NegInt($1)", "-($1)"], # UnaryMinusI
     ["NegInt64", "", "NegInt64($1)", "-($1)"], # UnaryMinusI64
     ["AbsInt", "", "AbsInt($1)", "Math.abs($1)"], # AbsI