From: Stefan Ring Date: Wed, 12 Oct 2011 22:05:41 +0000 (+0200) Subject: * src/vm/jit/arm/asmpart.S: Designate function labels as such; required for X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=commitdiff_plain;h=68b801108b8c8785e890db73c0edf4772381dd70 * src/vm/jit/arm/asmpart.S: Designate function labels as such; required for thumb interworking. --- diff --git a/src/vm/jit/arm/asmpart.S b/src/vm/jit/arm/asmpart.S index 7786ab160..eaee0213d 100644 --- a/src/vm/jit/arm/asmpart.S +++ b/src/vm/jit/arm/asmpart.S @@ -40,10 +40,15 @@ /* 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 **********************************************************