Changeset 4972


Ignore:
Timestamp:
Aug 20, 2006, 4:10:12 PM (18 years ago)
Author:
Gary Byers
Message:

:struct-by-value: don't read-time conditionalize (do other things still use
read-time conditionals ?)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/lib/db-io.lisp

    r4788 r4972  
    12411241                      `(#\l)
    12421242                      '(#\?)))))))))))
    1243     ((:struct :union) #+eabi-target `(#\a)
    1244      #+poweropen-target (if return-value-p `(#\a)
    1245                           `(#\r ,@(encode-name (ffi-struct-reference (cadr spec))))))
     1243    ((:struct :union)
     1244     (if (getf (ftd-attributes *target-ftd*) :struct-by-value)
     1245       (if return-value-p `(#\a)
     1246                          `(#\r ,@(encode-name (ffi-struct-reference (cadr spec)))))
     1247       `(#\a)))
    12461248    (:typedef
    12471249     (let* ((typedef (cadr spec))
Note: See TracChangeset for help on using the changeset viewer.