aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEduardo Julian2016-11-25 20:25:11 -0400
committerEduardo Julian2016-11-25 20:25:11 -0400
commit5699edbb8cc86e3132ca8059fc916e74f0a102c4 (patch)
tree3b0503d4204df76825da409fcc7bb62577703e85 /src
parent6e44438a3c67de97a542eca05c2a21015288da28 (diff)
- Fixed some compiler code that was using java.lang.Long::compareUnsigned, instead of LuxRT's version
Diffstat (limited to 'src')
-rw-r--r--src/lux/compiler/host.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lux/compiler/host.clj b/src/lux/compiler/host.clj
index d987076c1..65f3c0227 100644
--- a/src/lux/compiler/host.clj
+++ b/src/lux/compiler/host.clj
@@ -2183,7 +2183,7 @@
$then (new Label)
$end (new Label)
_ (doto *writer*
- (.visitMethodInsn Opcodes/INVOKESTATIC +wrapper-class+ "compareUnsigned" "(JJ)I")
+ (.visitMethodInsn Opcodes/INVOKESTATIC "lux/LuxRT" "_compareUnsigned" "(JJ)I")
(.visitLdcInsn (int <cmp-output>))
(.visitJumpInsn Opcodes/IF_ICMPEQ $then)
(.visitFieldInsn Opcodes/GETSTATIC (&host-generics/->bytecode-class-name "java.lang.Boolean") "FALSE" (&host-generics/->type-signature "java.lang.Boolean"))