Skip to content
Snippets Groups Projects
Commit 756fdfb8 authored by wlott's avatar wlott
Browse files

Added define-static-functions for two-arg-{and,ior,xor}.

parent 3422fd7b
No related branches found
No related tags found
No related merge requests found
...@@ -321,3 +321,8 @@ ...@@ -321,3 +321,8 @@
(define-static-function two-arg-/= (x y) :translate /=) (define-static-function two-arg-/= (x y) :translate /=)
(define-static-function %negate (x) :translate %negate) (define-static-function %negate (x) :translate %negate)
(define-static-function two-arg-and (x y) :translate logand)
(define-static-function two-arg-ior (x y) :translate logior)
(define-static-function two-arg-xor (x y) :translate logxor)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment