From 04e43e69cb457ce27fc3e9f6e6f236c103c310af Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Sun, 16 Jul 2006 06:39:04 +0000 Subject: [PATCH] 0.9.14.16: Fix x86-64 build [ (mov ...) -> (inst mov ...) ]. --- src/compiler/x86-64/array.lisp | 10 +++++----- version.lisp-expr | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/compiler/x86-64/array.lisp b/src/compiler/x86-64/array.lisp index be4823d..7b5ee7a 100644 --- a/src/compiler/x86-64/array.lisp +++ b/src/compiler/x86-64/array.lisp @@ -247,11 +247,11 @@ (unsigned-reg (inst or old value))) (inst rol old :cl) - (mov (make-ea :qword :base object :index word-index - :scale n-word-bytes - :disp (- (* vector-data-offset n-word-bytes) - other-pointer-lowtag)) - old) + (inst mov (make-ea :qword :base object :index word-index + :scale n-word-bytes + :disp (- (* vector-data-offset n-word-bytes) + other-pointer-lowtag)) + old) (sc-case value (immediate (inst mov result (tn-value value))) diff --git a/version.lisp-expr b/version.lisp-expr index 69bf9b0..e62d17e 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".) -"0.9.14.15" +"0.9.14.16" -- 1.7.10.4