aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
index 5d0ea9186..65e864d91 100644
--- a/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
+++ b/new-luxc/source/luxc/lang/translation/python/runtime.jvm.lux
@@ -266,7 +266,7 @@
(python.set! (list remaining) (|> (@@ remaining) (python./ (python.int 2))))))
(python.return! (@@ count)))))
-(runtime: (bit//shift-right param subject)
+(runtime: (bit//logical-right-shift param subject)
(let [mask (|> (python.int 1)
(python.bit-shl (python.- param (python.int 64)))
(python.- (python.int 1)))]
@@ -280,9 +280,9 @@
@@bit//32
@@bit//64
@@bit//count
- @@bit//shift-right))
+ @@bit//logical-right-shift))
-(def: high (-> Expression Expression) (bit//shift-right (python.int 32)))
+(def: high (-> Expression Expression) (bit//logical-right-shift (python.int 32)))
(def: low (-> Expression Expression) (python.bit-and full-32-bits))
(runtime: (nat//< param subject)
@@ -331,8 +331,8 @@
(python.set! (list $sH) (high subject))
(python.set! (list $pL) (..low param))
(python.set! (list $pH) (high param))
- (python.set! (list $bottom) (bit//shift-right (python.int 32)
- (python.* (@@ $pL) (@@ $sL))))
+ (python.set! (list $bottom) (bit//logical-right-shift (python.int 32)
+ (python.* (@@ $pL) (@@ $sL))))
(python.set! (list $middle) (python.+ (python.* (@@ $pL) (@@ $sH))
(python.* (@@ $pH) (@@ $sL))))
(python.set! (list $top) (python.* (@@ $pH) (@@ $sH)))
@@ -349,7 +349,7 @@
(python.while! (python.not (python.= (python.int 0) (@@ remaining)))
($_ python.then!
(python.set! (list zeroes) (python.- (python.int 1) (@@ zeroes)))
- (python.set! (list remaining) (bit//shift-right (python.int 1) (@@ remaining)))))
+ (python.set! (list remaining) (bit//logical-right-shift (python.int 1) (@@ remaining)))))
(python.return! (@@ zeroes)))))
(runtime: (deg/// param subject)