Changeset 373


Ignore:
Timestamp:
Jan 24, 2004, 3:28:56 PM (21 years ago)
Author:
Gary Byers
Message:

target-lisp-node-size in backend. Make default if :ppc32-target, not :ppc-target.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ccl/compiler/PPC/PPC32/ppc32-backend.lisp

    r344 r373  
    2020(eval-when (:compile-toplevel :execute)
    2121  (require "NXENV")
    22   (require "PPCENV"))
     22  (require "PPCENV")
     23  (require "PPC32-ARCH"))
    2324
    2425(defvar *ppc32-vinsn-templates* (make-hash-table :test #'eq))
     
    4849                :name :linuxppc32
    4950                :target-arch-name :ppc32
    50                 :target-foreign-type-data nil)
     51                :target-foreign-type-data nil
     52                :target-lisp-node-size 4)
    5153  )
    5254
     
    6870                :name :darwinppc32
    6971                :target-arch-name :ppc32
    70                 :target-foreign-type-data nil)
     72                :target-foreign-type-data nil
     73                :target-lisp-node-size 4)
    7174  )
    7275
     
    9295(fixup-ppc32-backend)
    9396
    94 #+ppc-target
     97#+ppc32-target
    9598(setq *host-backend* *ppc32-backend* *target-backend* *ppc32-backend*)
    9699
Note: See TracChangeset for help on using the changeset viewer.