From 1eb271b4a65197e44aee1a33302d371b209920ad Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sun, 27 May 1990 14:58:13 +0000 Subject: [PATCH] Had the source and result switched in the replace transform. --- compiler/generic/vm-tran.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compiler/generic/vm-tran.lisp b/compiler/generic/vm-tran.lisp index 6896ad0ce..232051b22 100644 --- a/compiler/generic/vm-tran.lisp +++ b/compiler/generic/vm-tran.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-tran.lisp,v 1.9 1990/05/23 06:08:42 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/vm-tran.lisp,v 1.10 1990/05/27 14:58:13 wlott Exp $ ;;; ;;; This file contains impelemtentation-dependent transforms. ;;; @@ -194,10 +194,10 @@ end1 end2) (simple-string simple-string &rest t)) '(progn - (bit-bash-copy string1 - (+ (* start1 vm:byte-bits) vector-data-bit-offset) - string2 + (bit-bash-copy string2 (+ (* start2 vm:byte-bits) vector-data-bit-offset) + string1 + (+ (* start1 vm:byte-bits) vector-data-bit-offset) (* (min (- (or end1 (length string1)) start1) (- (or end2 (length string2)) -- GitLab