Changeset 5056


Ignore:
Timestamp:
Aug 28, 2006, 3:30:54 PM (18 years ago)
Author:
Gary Byers
Message:

xloader was missing a few new ops.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/xdump/xfasload.lisp

    r5054 r5056  
    11071107      str)))
    11081108
     1109(defxloadfaslop $fasl-nvstr (s)
     1110  (let* ((n (%fasl-read-count s)))
     1111    (multiple-value-bind (str v o) (xload-make-ivector *xload-readonly-space* :simple-string n)
     1112      (%epushval s str)
     1113      (dotimes (i n)
     1114        (setf (u8-ref v (+ o i *xload-target-misc-data-offset*))
     1115              (%fasl-read-count s)))
     1116      str)))
    11091117
    11101118;;; Allegedly deprecated.
     
    11661174  (%xload-fasl-vmake-symbol s))
    11671175
     1176(defxloadfaslop $fasl-nvmksym (s)
     1177  (%xload-fasl-nvmake-symbol s))
     1178
    11681179(defxloadfaslop $fasl-vmksym-special (s)
    11691180  (%xload-fasl-vmake-symbol s t))
     1181
     1182(defxloadfaslop $fasl-nvmksym-special (s)
     1183  (%xload-fasl-nvmake-symbol s t))
    11701184
    11711185(defun %xload-fasl-vintern (s package &optional idx)
Note: See TracChangeset for help on using the changeset viewer.