From: Chris Hanson Date: Thu, 13 Sep 2007 12:49:13 +0000 (+0000) Subject: Fix two WNA errors that occur when generating RTL and/or LAP files. X-Git-Tag: 20090517-FFI~440 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=cf3630812067b1de3dbc75c81cb6005b30fd6013;p=mit-scheme.git Fix two WNA errors that occur when generating RTL and/or LAP files. --- diff --git a/v7/src/compiler/base/toplev.scm b/v7/src/compiler/base/toplev.scm index 38ee98582..3fb7dd065 100644 --- a/v7/src/compiler/base/toplev.scm +++ b/v7/src/compiler/base/toplev.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: toplev.scm,v 4.75 2007/06/13 13:33:43 cph Exp $ +$Id: toplev.scm,v 4.76 2007/09/13 12:49:13 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -564,11 +564,11 @@ USA. (phase/rtl-generation) (phase/rtl-optimization) (if rtl-output-port - (phase/rtl-file-output rtl-output-port)) + (phase/rtl-file-output scode rtl-output-port)) (phase/lap-generation) (phase/lap-linearization) (if lap-output-port - (phase/lap-file-output lap-output-port)) + (phase/lap-file-output scode lap-output-port)) (if compiler:cross-compiling? (cross-assemble&link info-output-pathname) (assemble&link info-output-pathname)))))))