]> gitweb.factorcode.org Git - factor.git/commitdiff
bootstrap.primitives: fix stack effect names for bignum-bit?.
authorJohn Benediktsson <mrjbq7@gmail.com>
Sun, 7 Jun 2015 18:07:34 +0000 (11:07 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 7 Jun 2015 18:08:57 +0000 (11:08 -0700)
core/bootstrap/primitives.factor

index cd215ce16a26f627127182eb3dadca225f4f7f20..1ef404a9b7549fcd344160d42f96ba97d7bc8eae 100755 (executable)
@@ -481,7 +481,7 @@ tuple
     { "bignum*" "math.private" "primitive_bignum_multiply" ( x y -- z ) }
     { "bignum+" "math.private" "primitive_bignum_add" ( x y -- z ) }
     { "bignum-" "math.private" "primitive_bignum_subtract" ( x y -- z ) }
-    { "bignum-bit?" "math.private" "primitive_bignum_bitp" ( n x -- ? ) }
+    { "bignum-bit?" "math.private" "primitive_bignum_bitp" ( x n -- ? ) }
     { "bignum-bitand" "math.private" "primitive_bignum_and" ( x y -- z ) }
     { "bignum-bitnot" "math.private" "primitive_bignum_not" ( x -- y ) }
     { "bignum-bitor" "math.private" "primitive_bignum_or" ( x y -- z ) }