* src/vm/jit/arm/asmpart.S: Designate function labels as such; required for
authorStefan Ring <stefan@complang.tuwien.ac.at>
Wed, 12 Oct 2011 22:05:41 +0000 (00:05 +0200)
committerStefan Ring <stefan@complang.tuwien.ac.at>
Wed, 12 Oct 2011 22:05:41 +0000 (00:05 +0200)
thumb interworking.

src/vm/jit/arm/asmpart.S

index 7786ab160be30e6a4ba9b07f8fa39a69393557a7..eaee0213d42fd83efc1dfeb14a3195fd67a11561 100644 (file)
 /* export functions ***********************************************************/
 
        .globl asm_vm_call_method
+       .type  asm_vm_call_method, %function
        .globl asm_vm_call_method_int
+       .type  asm_vm_call_method_int, %function
        .globl asm_vm_call_method_long
+       .type  asm_vm_call_method_long, %function
        .globl asm_vm_call_method_float
+       .type  asm_vm_call_method_float, %function
        .globl asm_vm_call_method_double
+       .type  asm_vm_call_method_double, %function
        .globl asm_vm_call_method_exception_handler
        .globl asm_vm_call_method_end
 
@@ -53,6 +58,7 @@
        .globl asm_abstractmethoderror
 
        .globl asm_cacheflush
+       .type  asm_cacheflush, %function
 
 
 /* asm_vm_call_method **********************************************************