Changeset 303


Ignore:
Timestamp:
Jan 15, 2004, 12:33:32 AM (21 years ago)
Author:
Gary Byers
Message:

(INTEGER 0 0) is a subtype of (INTEGER 0 1), aka BIT.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/level-0/l0-array.lisp

    r289 r303  
    520520               (high (numeric-ctype-high ctype)))
    521521          (cond ((or (null low) (null high)) ppc32::subtag-simple-vector)
    522                 ((and (= low 0) (= high 1) ppc32::subtag-bit-vector))
     522                ((and (= low 0) (<= high 1) ppc32::subtag-bit-vector))
    523523                ((and (>= low 0) (<= high 255)) ppc32::subtag-u8-vector)
    524524                ((and (>= low 0) (<= high 65535)) ppc32::subtag-u16-vector)
Note: See TracChangeset for help on using the changeset viewer.