From: Guillermo J. Rozas Date: Sun, 28 Mar 1993 21:53:34 +0000 (+0000) Subject: Add missing B suffix to use of MOVZX instruction. X-Git-Tag: 20090517-FFI~8397 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=2759f83a1e71ab5abd4c8911dfaac3909d2d8e81;p=mit-scheme.git Add missing B suffix to use of MOVZX instruction. --- diff --git a/v7/src/compiler/machines/i386/rules1.scm b/v7/src/compiler/machines/i386/rules1.scm index 5190e613a..c533445f7 100644 --- a/v7/src/compiler/machines/i386/rules1.scm +++ b/v7/src/compiler/machines/i386/rules1.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: rules1.scm,v 1.16 1993/03/03 16:37:54 gjr Exp $ +$Id: rules1.scm,v 1.17 1993/03/28 21:53:34 gjr Exp $ Copyright (c) 1992-1993 Massachusetts Institute of Technology @@ -343,7 +343,7 @@ MIT in each case. |# (let ((target (target-register-reference target))) (cond ((zero? type) ;; No faster, but smaller - (LAP (MOVZX ,target ,source))) + (LAP (MOVZX B ,target ,source))) (else (LAP ,@(load-non-pointer target type 0) (MOV B ,target ,source))))))