Changeset 5481


Ignore:
Timestamp:
Nov 5, 2006, 6:41:52 AM (18 years ago)
Author:
Gary Byers
Message:

%AREF2, %ASET2: in LAP, just call into the kernel.

File:
1 edited

Legend:

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

    r5389 r5481  
    824824
    825825
    826 
     826(defppclapfunction %aref2 ((array arg_x) (i arg_y) (j arg_z))
     827  (check-nargs 3)
     828  (ba .SParef2))
     829
     830
     831(defppclapfunction %aset2 ((array 0) (i arg_x) (j arg_y) (newval arg_z))
     832  (check-nargs 4)
     833  (vpop temp0)
     834  (ba .SPaset2))
    827835 
    828836
Note: See TracChangeset for help on using the changeset viewer.