Renamed *_checkarraycast to *_arraycheckcast.
[cacao.git] / src / vm / jit / x86_64 / asmpart.S
index 88e056d27b4126af9ca121ef91ecdea77b03757b..d69c3955d4eb31b183a09012d55d0aedc4dc1a1a 100644 (file)
@@ -28,7 +28,7 @@
             Reinhard Grafl
             Christian Thalinger
 
-   $Id: asmpart.S 2424 2005-04-30 13:45:06Z jowenn $
+   $Id: asmpart.S 2448 2005-05-11 13:03:20Z twisti $
 
 */
 
 
        .globl asm_wrapper_patcher
 
-       .globl asm_builtin_checkarraycast
+       .globl asm_builtin_arraycheckcast
        .globl asm_builtin_aastore
 
        .globl asm_builtin_f2i
@@ -971,16 +971,16 @@ asm_builtin_d2l:
        ret
 
 
-/* asm_builtin_checkarraycast **************************************************
+/* asm_builtin_arraycheckcast **************************************************
 
    Does the cast check and eventually throws an exception.
 
 *******************************************************************************/
 
-asm_builtin_checkarraycast:
+asm_builtin_arraycheckcast:
        sub     $24,%rsp                    /* keep stack 16-byte aligned         */
        mov     %rdi,(%rsp)                 /* save object pointer                */
-       call    builtin_checkarraycast      /* builtin_checkarraycast             */
+       call    builtin_arraycheckcast
        test    %rax,%rax                   /* if (false) throw exception         */
        je      nb_carray_throw
        mov     (%rsp),%rax                 /* return object pointer              */