cmp: signal internal error in wt-vv-value if we detect a programming error

This commit is contained in:
Marius Gerbershagen 2025-03-16 17:03:36 +01:00
parent 887115fe95
commit cd90ecfd55

View file

@ -400,7 +400,8 @@
((typep value 'fixnum *cmp-env*) (wt-fixnum value vv))
((typep value 'character *cmp-env*) (wt-character value vv))
((typep value 'float *cmp-env*) (wt-number value vv))
((typep value '(complex float) *cmp-env*) (wt-number value vv))))
((typep value '(complex float) *cmp-env*) (wt-number value vv))
(t (baboon "wt-vv-value: ~s is not an immediate value, but has no VV index~%" value))))
(defun wt-vv (vv-loc)
(setf (vv-used-p vv-loc) t)