aboutsummaryrefslogtreecommitdiff
path: root/src/interp/bits.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/bits.lisp')
-rw-r--r--src/interp/bits.lisp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/interp/bits.lisp b/src/interp/bits.lisp
index 5b20b3e7..8a97cb10 100644
--- a/src/interp/bits.lisp
+++ b/src/interp/bits.lisp
@@ -47,15 +47,6 @@
;;; SMW Nov 88: Created
-(defmacro truth-to-bit (x) `(cond (,x 1) ('else 0)))
-(defmacro bit-to-truth (b) `(eql ,b 1))
-
-(defun bvec-make-full (n x)
- (make-array (list n) :element-type 'bit :initial-element x))
-
-(defmacro bvec-elt (bv i) `(sbit ,bv ,i))
-(defmacro bvec-setelt (bv i x) `(setf (sbit ,bv ,i) ,x))
-
(defun bvec-greater (bv1 bv2)
(let ((pos (mismatch bv1 bv2)))
(cond ((or (null pos) (>= pos (length bv1))) nil)