Changeset 8402


Ignore:
Timestamp:
Feb 3, 2008, 6:12:29 AM (17 years ago)
Author:
Gary Byers
Message:

SHOW-FUNTION-CONSTANTS for PPC.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/compiler/PPC/ppc2.lisp

    r7715 r8402  
    90599059                             (list nil (list arg))))))))
    90609060
     9061(defun show-function-constants (f)
     9062  (cond ((typep f 'function)
     9063         (do* ((i 0 j)
     9064               (n (uvsize f))
     9065               (j 1 (1+ j)))
     9066              ((= j n))
     9067           (format t "~&~d: ~s" i (uvref f j))))
     9068        (t (report-bad-arg f 'function))))
     9069
     9070       
    90619071;------
    90629072
Note: See TracChangeset for help on using the changeset viewer.