From a18fd8dd0cc6172628ed3ac2e75129c72fe627eb Mon Sep 17 00:00:00 2001 From: Thiemo Seufer Date: Mon, 23 Jul 2007 20:26:38 +0000 Subject: [PATCH] 1.0.7.38: Fix the MIPS single-stepper break instruction. --- src/compiler/mips/call.lisp | 6 +++--- version.lisp-expr | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/compiler/mips/call.lisp b/src/compiler/mips/call.lisp index 8ceb602..7b318e4 100644 --- a/src/compiler/mips/call.lisp +++ b/src/compiler/mips/call.lisp @@ -798,9 +798,9 @@ default-value-8 ;; Construct a trap code with the low bits from ;; SINGLE-STEP-AROUND-TRAP and the high bits from ;; the register number of CALLABLE-TN. - (inst break (logior single-step-around-trap - (ash (reg-tn-encoding callable-tn) - 5))) + (inst break 0 (logior single-step-around-trap + (ash (reg-tn-encoding callable-tn) + 5))) (emit-label step-done-label)))) ,@(if named diff --git a/version.lisp-expr b/version.lisp-expr index 3223755..a64e467 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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".) -"1.0.7.37" +"1.0.7.38" -- 1.7.10.4