Skip to content

Commit

Permalink
0.9.4.65:
Browse files Browse the repository at this point in the history
	Add missing definitions for object-not-list-trap,
	object-not-instance-trap, peudo-atomic-trap.
  • Loading branch information
Thiemo Seufer committed Sep 12, 2005
1 parent b4311ac commit 32d12f1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions src/compiler/mips/insts.lisp
Expand Up @@ -1069,6 +1069,8 @@
(#.cerror-trap
(nt "Cerror trap")
(sb!disassem:handle-break-args #'snarf-error-junk stream dstate))
(#.object-not-list-trap
(nt "Object not list trap"))
(#.breakpoint-trap
(nt "Breakpoint trap"))
(#.pending-interrupt-trap
Expand All @@ -1077,6 +1079,8 @@
(nt "Halt trap"))
(#.fun-end-breakpoint-trap
(nt "Function end breakpoint trap"))
(#.object-not-instance-trap
(nt "Object not instance trap"))
)))

(define-instruction break (segment code &optional (subcode 0))
Expand Down
6 changes: 5 additions & 1 deletion src/compiler/mips/parms.lisp
Expand Up @@ -107,7 +107,11 @@
cerror
breakpoint
fun-end-breakpoint
after-breakpoint)
after-breakpoint
unused
pseudo-atomic
object-not-list
object-not-instance)

(defenum (:prefix trace-table-)
normal
Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
"0.9.4.64"
"0.9.4.65"

0 comments on commit 32d12f1

Please sign in to comment.