Skip to content
Snippets Groups Projects
Commit e1bba2e0 authored by wlott's avatar wlott
Browse files

Stripped out error[012].

parent d3f4ff94
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC).
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/pred.lisp,v 1.2 1990/02/16 08:27:35 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/pred.lisp,v 1.3 1990/03/06 19:39:09 wlott Exp $
;;;
;;; This file contains the VM definition of predicate VOPs for the MIPS.
;;;
......@@ -57,25 +57,3 @@
(nop)))
;;;; Error VOPs
(define-vop (error0)
(:args (code :scs (any-reg descriptor-reg)))
(:generator 1000
(error-call 0 code)))
(define-vop (error1)
(:args (code :scs (any-reg descriptor-reg))
(arg :scs (descriptor-reg)))
(:generator 1000
(error-call 1 code arg)))
(define-vop (error2)
(:args (code :scs (any-reg descriptor-reg))
(arg1 :scs (descriptor-reg))
(arg2 :scs (descriptor-reg)))
(:generator 1000
(error-call 2 code arg1 arg2)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment