X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fearly-assem.lisp;h=13e756ad27b72cbec01e2233c21fb0ae9a5ed83c;hb=f46d27c212eb12011b772cb8eefe904da4e7c778;hp=0162a0c9724f16754dcaaac284992148d48f1492;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/compiler/early-assem.lisp b/src/compiler/early-assem.lisp index 0162a0c..13e756a 100644 --- a/src/compiler/early-assem.lisp +++ b/src/compiler/early-assem.lisp @@ -26,10 +26,10 @@ ;;; sequence.) ;;; ASSEMBLY-UNIT-BITS -- the number of bits in the minimum assembly -;;; unit, (also refered to as a ``byte''). Hopefully, different +;;; unit, (also referred to as a ``byte''). Hopefully, different ;;; instruction sets won't require changing this. -(defconstant assembly-unit-bits 8) -(defconstant assembly-unit-mask (1- (ash 1 assembly-unit-bits))) +(def!constant assembly-unit-bits 8) +(def!constant assembly-unit-mask (1- (ash 1 assembly-unit-bits))) (deftype assembly-unit () `(unsigned-byte ,assembly-unit-bits)) @@ -45,7 +45,7 @@ ;;; the maximum alignment we can guarantee given the object format. If ;;; the loader only loads objects 8-byte aligned, we can't do any ;;; better then that ourselves. -(defconstant max-alignment 3) +(def!constant max-alignment 3) (deftype alignment () `(integer 0 ,max-alignment))