diff --git a/compiler/mips/system.lisp b/compiler/mips/system.lisp
index ccaf7688497bcf485605a2b63e5305bd946db61d..dca1f10820c8e185ac865fe76f6f06a2ce88c23a 100644
--- a/compiler/mips/system.lisp
+++ b/compiler/mips/system.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.31 1990/09/09 20:39:52 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/system.lisp,v 1.32 1990/10/04 23:23:43 wlott Exp $
 ;;;
 ;;;    MIPS VM definitions of various system hacking operations.
 ;;;
@@ -156,6 +156,18 @@
     (move res x)))
 
 
+(define-vop (structurify)
+  (:policy :fast-safe)
+  (:translate structurify)
+  (:args (vec :scs (descriptor-reg) :target struct))
+  (:results (struct :scs (descriptor-reg)))
+  (:temporary (:scs (any-reg)) temp)
+  (:generator 2
+    (inst li temp vm:structure-header-type)
+    (storew temp vec 0 vm:other-pointer-type)
+    (move struct vec)))
+
+
 (define-vop (make-fixnum)
   (:args (ptr :scs (any-reg descriptor-reg)))
   (:results (res :scs (any-reg descriptor-reg)))