Raymond Toy pushed to branch arm64-dev-1 at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/compiler/generic/vm-macs.lisp
    ... ... @@ -239,7 +239,8 @@
    239 239
     	  sgi-fasl-file-implementation
    
    240 240
     	  ppc-fasl-file-implementation
    
    241 241
     	  amd64-fasl-file-implementation
    
    242
    -	  arm-fasl-file-implementation))
    
    242
    +	  arm-fasl-file-implementation
    
    243
    +	  arm64-fasl-file-implementation))
    
    243 244
     
    
    244 245
     ;;; Constants for the different implementations.  These are all defined in
    
    245 246
     ;;; one place to make sure they are all unique.
    
    ... ... @@ -247,7 +248,8 @@
    247 248
     (defparameter fasl-file-implementations
    
    248 249
       '(nil "Pmax" "Sparc" "RT" "RT/AFPA" "x86" "HPPA"
    
    249 250
         "Big-endian byte-code" "Little-endian byte-code" "Alpha" "SGI" "PPC" "AMD64"
    
    250
    -    "ARM"))
    
    251
    +    "ARM"
    
    252
    +    "ARM64/aarch64"))
    
    251 253
     (defconstant pmax-fasl-file-implementation 1)
    
    252 254
     (defconstant sparc-fasl-file-implementation 2)
    
    253 255
     (defconstant rt-fasl-file-implementation 3)
    
    ... ... @@ -261,6 +263,7 @@
    261 263
     (defconstant ppc-fasl-file-implementation 11)
    
    262 264
     (defconstant amd64-fasl-file-implementation 12)
    
    263 265
     (defconstant arm-fasl-file-implementation 13)
    
    266
    +(defconstant arm64-fasl-file-implementation 14)
    
    264 267
     
    
    265 268
     ;;; The maximum number of SCs in any implementation.
    
    266 269
     (defconstant sc-number-limit 32)