From 66845d03daa5065695105da1191554e204f083ab Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sat, 1 Dec 1990 22:13:07 +0000
Subject: [PATCH] Added an ``alignment'' slot to the SC struct.

---
 compiler/vop.lisp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/compiler/vop.lisp b/compiler/vop.lisp
index 7e356001f..830456bae 100644
--- a/compiler/vop.lisp
+++ b/compiler/vop.lisp
@@ -948,7 +948,11 @@
 		 :type sc-vector)
   ;;
   ;; True if this SC or one of its alternates in in the NUMBER-STACK SB.
-  (number-stack-p nil :type boolean))
+  (number-stack-p nil :type boolean)
+
+  ;;
+  ;; Alignment restriction.  The offset must be an even multiple of this.
+  (alignment 1 :type (integer 1)))
 
 (defprinter sc
   name)
-- 
GitLab