From: Stephen Adams Date: Fri, 8 Sep 1995 02:44:17 +0000 (+0000) Subject: Removed dead code. X-Git-Tag: 20090517-FFI~5971 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=988f8b38813a95ab60ac18d7ab117b61e9776ae8;p=mit-scheme.git Removed dead code. --- diff --git a/v8/src/compiler/midend/dbgstr.scm b/v8/src/compiler/midend/dbgstr.scm index efcb1b737..b2db10fed 100644 --- a/v8/src/compiler/midend/dbgstr.scm +++ b/v8/src/compiler/midend/dbgstr.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: dbgstr.scm,v 1.17 1995/08/18 23:53:54 adams Exp $ +$Id: dbgstr.scm,v 1.18 1995/09/08 02:44:17 adams Exp $ Copyright (c) 1994-1995 Massachusetts Institute of Technology @@ -185,32 +185,6 @@ MIT in each case. |# (set-new-dbg-procedure/label! new-info label) new-info))) -(define (new-dbg-continuation->old-dbg-continuation label frame-size new-info) - (and new-info - (new-dbg-continuation/outer new-info) - (new-dbg-continuation/inner new-info) - (let ((frame-size (+ frame-size 1)) - (type (new-dbg-continuation/type new-info)) - (block (new-dbg-continuation/block new-info)) - (aggregate - (new-dbg-expression/source-code - (new-dbg-continuation/outer new-info))) - (element - (new-dbg-expression/source-code - (new-dbg-continuation/inner new-info)))) - (make-dbg-continuation - block - label - false ; ?? type - frame-size - (vector (case type - ((COMBINATION-ELEMENT SEQUENCE-ELEMENT CONDITIONAL-PREDICATE) - type) - (else - (internal-error "new-dbg-continuation->old-dbg-continuation: Unkown type" - type))) - aggregate - element))))) (define (new-dbg-continuation->old-dbg-continuation label frame-size new-info) frame-size ; ignored