X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fx86%2Fmemory.lisp;h=ca8c2e28b0dc9328a3f117620e6b7c3d206e2640;hb=8f4ef01b8c9930d7dd0a56a96845a6d84ca5774d;hp=10ce7537b5e17e06dcf86600806ba147db09b23e;hpb=50305b602c3953440af716137a56f50cd204375d;p=sbcl.git diff --git a/src/compiler/x86/memory.lisp b/src/compiler/x86/memory.lisp index 10ce753..ca8c2e2 100644 --- a/src/compiler/x86/memory.lisp +++ b/src/compiler/x86/memory.lisp @@ -15,7 +15,7 @@ ;;; CELL-REF and CELL-SET are used to define VOPs like CAR, where the ;;; offset to be read or written is a property of the VOP used. ;;; CELL-SETF is similar to CELL-SET, but delivers the new value as -;;; the result. CELL-SETF-FUNCTION takes its arguments as if it were a +;;; the result. CELL-SETF-FUN takes its arguments as if it were a ;;; SETF function (new value first, as apposed to a SETF macro, which ;;; takes the new value last). (define-vop (cell-ref) @@ -41,7 +41,7 @@ (:generator 4 (storew value object offset lowtag) (move result value))) -(define-vop (cell-setf-function) +(define-vop (cell-setf-fun) (:args (value :scs (descriptor-reg any-reg) :target result) (object :scs (descriptor-reg))) (:results (result :scs (descriptor-reg any-reg)))