0.pre7.82:
[sbcl.git] / src / assembly / x86 / arith.lisp
index 92c270a..392f67c 100644 (file)
@@ -50,7 +50,7 @@
                (inst jmp
                      (make-ea :dword
                               :disp (+ nil-value
-                                       (static-function-offset
+                                       (static-fun-offset
                                         ',(symbolicate "TWO-ARG-" fun)))))
 
                DO-BODY
   (inst push eax)
   (inst mov ecx (fixnumize 1))   ; arg count
   (inst jmp (make-ea :dword
-                    :disp (+ nil-value (static-function-offset '%negate))))
+                    :disp (+ nil-value (static-fun-offset '%negate))))
 
   FIXNUM
   (move res x)
                                        ; should be named parallelly.
                (inst jmp (make-ea :dword
                                   :disp (+ nil-value
-                                           (static-function-offset
-                                            ',static-fn))))
+                                           (static-fun-offset ',static-fn))))
 
                INLINE-FIXNUM-COMPARE
                (inst cmp x y)
   (inst push eax)
   (inst mov ecx (fixnumize 2))
   (inst jmp (make-ea :dword
-                    :disp (+ nil-value (static-function-offset 'eql))))
+                    :disp (+ nil-value (static-fun-offset 'eql))))
 
   RETURN-T
   (load-symbol res t)
   (inst push eax)
   (inst mov ecx (fixnumize 2))
   (inst jmp (make-ea :dword
-                    :disp (+ nil-value (static-function-offset 'two-arg-=))))
+                    :disp (+ nil-value (static-fun-offset 'two-arg-=))))
 
   RETURN-T
   (load-symbol res t))