diff --git a/compiler/vop.lisp b/compiler/vop.lisp
index e9f5cb4da00f7de5b39e68f7499da8fc38556c99..6a4f2599ec0a93e4f182204b69ff91822ce3331b 100644
--- a/compiler/vop.lisp
+++ b/compiler/vop.lisp
@@ -50,6 +50,8 @@
 ;;; the primitive types of the operands, and the primitive type of a value
 ;;; is used to constrain the possible representations of that value.
 ;;;
+(eval-when (compile load eval)
+;;;
 (defstruct (primitive-type (:print-function %print-primitive-type))
   ;;
   ;; The name of this primitive-type.
@@ -71,10 +73,13 @@
 
 (defprinter primitive-type
   name
-  (type :test (not (eq (type-specifier type)
-		       (primitive-type-name structure)))
+  (type :test (and type
+		   (not (eq (type-specifier type)
+			    (primitive-type-name structure))))
 	:prin1 (type-specifier type)))
 
+); eval-when (compile load eval)
+
 
 ;;;; IR1 annotations used for IR2 conversion:
 ;;;