Changeset 5461


Ignore:
Timestamp:
Nov 3, 2006, 12:38:39 PM (18 years ago)
Author:
Gary Byers
Message:

Consistently use :struct (not :structure) to refer to primitive structure type.

Fix array-ctype-dimensions check in %aref1, add it to %aset1.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/compiler/X86/x862.lisp

    r5448 r5461  
    65226522         (atype (if (array-ctype-p ctype) ctype))
    65236523         (keyword (if (and atype
    6524                            (= 1 (length (array-ctype-dimensions atype)))
     6524                           (let* ((dims (array-ctype-dimensions atype)))
     6525                             (or (atom dims)
     6526                                 (= (length dims) 1)))
    65256527                           (not (array-ctype-complexp atype)))
    65266528                    (funcall
     
    65376539         (atype (if vtype (specifier-type vtype)))
    65386540         (keyword (if (and atype
     6541                           (let* ((dims (array-ctype-dimensions atype)))
     6542                             (or (atom dims)
     6543                                 (= (length dims) 1)))
    65396544                           (not (array-ctype-complexp atype)))
    65406545                    (funcall
Note: See TracChangeset for help on using the changeset viewer.