fix bitwise ops

svn: r13850

original commit: d10cdccca9a704f6a215660f667dd7aaaf2c8757
This commit is contained in:
Eli Barzilay 2009-02-26 14:04:39 +00:00
parent 91f75661c4
commit de3fec3ebc

View File

@ -395,10 +395,10 @@
[lcm (null -Integer . ->* . -Integer)]
[arithmetic-shift (-Integer -Integer . -> . -Integer)]
[bitwise-and (null N . ->* . N)]
[bitwise-ior (null N . ->* . N)]
[bitwise-not (null N . ->* . N)]
[bitwise-xor (null N . ->* . N)]
[bitwise-and (null -Integer . ->* . -Integer)]
[bitwise-ior (null -Integer . ->* . -Integer)]
[bitwise-not (null -Integer . ->* . -Integer)]
[bitwise-xor (null -Integer . ->* . -Integer)]
[vector (-poly (a) (->* (list) a (-vec a)))]
[make-string (cl-> [(-Integer) -String] [(-Integer -Char) -String])]